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