aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/inner_with_order.sql
blob: 471fb485eca62a4d3626eda3e9d26a89fe0b549c (plain) (blame)
1
2
PRAGMA DisableSimpleColumns;
select Input1.key as key, Input1.subkey, Input3.value from plato.Input1 inner join plato.Input3 using (key) order by key desc;