Ob das "besser" als das exists ist, kann ich dir auch nicht sagen:
Code:
select h.id, h.bezeichnung,
(select sum(x.zahl) from untertabelle x where x.haupttabelle_id = h.id) summe
from haupttabelle
join untertabelle u on (u.haupttabelle_id = h.id)
where u.nochEineZahl > 10