Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
count_distinct
/
with_group_by_c_timestamp_nulls.sql
blob: 1c3931866dafeb3374fa77fbd40b06bc13c9a40b [
file
] [
log
] [
blame
]
select
c_timestamp
,
COUNT
(
DISTINCT
c_integer
)
from
alltypes_with_nulls
group
by
c_timestamp
order
by
c_timestamp
;