Hallo Philip,
ich benötige ja das Maximum einer (alias Spalte), die wiederum eine Aggregatfunktion nutzt.
Ah sorry, hatte ich irgendwie falsch gesehn.
Ich habe folgende Varianten anzubieten:
SQL-Code:
select
id,
count(*) as anz,
(
select max(anz)
from (select count(*) as anz from Tabelle group by id) as tmp
) as maximum
from Tabelle
group by id
having anz=maximum
SQL-Code:
select id, count(*) as anz
from Tabelle
group by id
having
(
select max(anz)
from (select count(*) as anz from Tabelle group by id) as tmp
) = anz