aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select/from_in_front_sub.sql
blob: e611f8c6612ea0b8cba4f01f424e3dfc1d1c1d91 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* postgres can not */
from
    (select cast(subkey as Double) / cast(key as Double) as val, value from plato.Input2) as res
select
    count(val) as subkey,
    cast(avg(val) as int) as value,
    value as key
group by value
order by subkey, value;