Hallo
SQL Experten,
habe folgendes Statement:
Delphi-Quellcode:
select sum(BETRAG_S) as Soll
from tbl_buchhaltung where (Jahr = :Jahr) and (Monat = :Monat)
and Kontonummer = :Konto
and ((Kontonummer <> 9000) and (Gegenkontonummer <> 9000))
union
select SUM(BETRAG_H) as Haben
from tbl_buchhaltung where (Jahr = :Jahr) and (Monat = :Monat)
and Gegenkontonummer = :Konto
and ((Kontonummer <> 9000) and (Gegenkontonummer <> 9000))
Das Ergebnis ist z.B.
Soll
45,00
254,00
Die Werte stimmen. Wie bekomme ich es hin das, das Ergebnis in einer Zeile mit den Spalten Soll und Haben. (siehe Tabelle)
Vielen Dank schon mal für die Hilfe.