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