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