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