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