aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/left_trivial.sql
blob: ae448327daea6770c0ea6cac1f43074b2a008110 (plain) (blame)
1
2
3
4
5
PRAGMA DisableSimpleColumns;
select Input1.key, Input1.subkey, Input3.value
from plato.Input1
left join plato.Input3 using (key)
order by Input1.key;