und noch eine wahrscheinlich nicht wirklich performantere Variante (oder wird der Subselect im where so nur 1x ausgeführt?):
SQL-Code:
select h.id, h.bezeichnung, sum(u.zahl) as summe
from haupttabelle h
join untertabelle u on (u.haupttabelle_id = h.id)
where h.id in (Select Distinct haupttabelle_id From untertabelle where nocheinezahl>10)