V Oracle můžete použít listagg()
, ale nemá žádné distinct
volba. Použijte tedy poddotaz a dvě úrovně agregace:
select listagg(id, ',') within group (order by id) as id, name, sum(cnt)
from (select id, name, count(*) as cnt
from t
group by id, name
) x
group by name;