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