Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
count_distinct
/
with_sum_avg_c_integer_group_by_3_cols.sql
blob: 810c71f91bb45c07be7e72be2629690078c36f6d [
file
] [
log
] [
blame
]
select
count
(
distinct
c_integer
),
sum
(
c_integer
),
round
(
avg
(
c_integer
))
from
alltypes_with_nulls
group
by
c_varchar
,
c_integer
,
c_bigint
order
by
c_varchar
,
c_integer
,
c_bigint
;