Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
count_distinct
/
with_min_max_c_integer_group_by_1_cols.sql
blob: 0e84c9fd4d3c5cee9d8c99d2ffc33fcf88848106 [
file
] [
log
] [
blame
]
select
count
(
distinct
c_integer
),
max
(
c_integer
),
min
(
c_integer
)
from
alltypes_with_nulls
group
by
c_date
order
by
c_date
;