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