Hi Leute,
gibt es eine Möglichkeit, wie man mehrere Abfragen auf eine Tabelle in einem Ergebnis anzeigen lässt?
Also z.B.:
Query 1:
SELECT COUNT(*) as Anzahl1
FROM Controlling
WHERE (EinAusgehend = 'E')
Query 2:
SELECT COUNT(*) as Anzahl2
FROM Controlling
WHERE (EinAusgehend = 'A')
Natürlich sind die Abfragen die ich kombinieren will etwas komplexer, aber es kommt im Prinzip aufs selbe hinaus.
Grüßle Ben