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