blob: 09c090a93ae8de72a7c27df348b387d5d3c893ce [file] [log] [blame]
-- multiple count distinct on different columns
select
count(distinct a1),
count(distinct b1),
count(distinct c1)
from
t1
group by
c1
order by
1,
2,
3;