Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
sanity
/
q13.sql
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
;