aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/left_all.sql
blob: b980bc85d239a7b491a2ce8a1615a5c9eed7c67a (plain) (blame)
1
2
3
4
5
6
PRAGMA DisableSimpleColumns;
use plato;
SELECT *
FROM Input2 AS a
LEFT JOIN Input3 AS b
ON a.value == b.value;