Du könntest es mit einem Join versuchen:
SQL-Code:
select
t1.monat, sum(t1.netto) SummeOhneMwSt,
(t2.netto) SummeMitMwSt, sum(t1.netto+t2.netto) GesamtSumme
from
tabelle t1, tabelle t2
where
t1.datum "filterzeitraum" and t1.mwst=0 and
t2.datum "filterzeitraum" and t2.mwst>=0
group by
t1.monat, t2.monat