aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/inner_grouped.sql
blob: 14d580b11911d0f64344f8b344764b709f4fcee7 (plain) (blame)
1
2
PRAGMA DisableSimpleColumns;
select Input1.key as key, max(Input3.value) as value from plato.Input1 inner join plato.Input3 using (key) group by Input1.key order by key;