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