Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
count_distinct
/
with_group_by_order_by_count_distinct_d9.sql
blob: 606329946c539878e07f05876713974577f8a2ab [
file
] [
log
] [
blame
]
select
d9
,
COUNT
(
DISTINCT
c_integer
)
from
alltypes
group
by
d9
order
by
d9
,
COUNT
(
DISTINCT
c_integer
)
desc
;