Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
aggregates
/
aggregation
/
group_by_case
/
case_in_sum_c_float.sql
blob: eb6996494c685e5b7393280201aebee26be02812 [
file
] [
log
] [
blame
]
select
count
(
distinct
a1
)
from
(
select
SUM
(
case
when
c_float
is
null
then
0
else
1
end
)
from
alltypes_with_nulls
group
by
c_date
order
by
SUM
(
case
when
c_float
is
null
then
0
else
1
end
))
as
dt
(
a1
);