Danke für die Hilfe.
Hat aber leider alles net geklappt...
Habe jetzt eine etwas unschöne Lösung gefunden:
SQL-Code:
SELECT titel, round(sum(minuten)/60) as Stunden,
(select Typ from positionen where belegnr="A056178" and titel=tab1.titel and Typ="T") as Typ,
(select left(positionstext,255) from positionen where belegnr="A056178" and titel=tab1.titel and Typ="T") as PosiText
from positionen as tab1
where belegnr = "A056178"
group by titel
Das klappt so, wie ich es möchte... Ist halt nicht so elegant...