Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
count_distinct
/
with_group_by_c_boolean_nulls.sql
blob: 3d2c098e40956611354a97df1e6a9705670caa33 [
file
] [
log
] [
blame
]
select
c_boolean
,
COUNT
(
DISTINCT
c_integer
)
from
alltypes_with_nulls
group
by
c_boolean
order
by
c_boolean
;