aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/count/count_nullable_sub.sql
blob: 0f962a7138d50754dca3abc410dac58869d01317 (plain) (blame)
1
2
3
4
5
6
7
8
select
    count(val) as subkey,
    cast(avg(val) as int) as value,
    value as key
from
    (select case key when '0' then NULL else cast(subkey as int) / cast(key as int) end as val, value from plato.Input2) as res
group by value
order by value;