aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/union_all/union_all_multiin.sql
blob: 284528b526b8e0dab473538f2ca93f9605df320f (plain) (blame)
1
2
3
4
5
6
7
8
9
USE plato;

SELECT * FROM (
    SELECT key, value from Input
    UNION ALL
    SELECT subkey as key, value from Input2
)
ORDER BY key, value
;