Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
count_distinct
/
with_min_max_c_float_group_by_8_cols.sql
blob: 7c59a477422793c3d79833fae7ee54a65092203f [
file
] [
log
] [
blame
]
select
count
(
distinct
c_float
),
max
(
c_float
),
min
(
c_float
)
from
alltypes_with_nulls
group
by
c_date
,
c_time
,
c_timestamp
,
c_boolean
,
c_varchar
,
c_integer
,
c_bigint
,
d9
order
by
c_date
,
c_time
,
c_timestamp
,
c_boolean
,
c_varchar
,
c_integer
,
c_bigint
,
d9
;