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