summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select_yql/named_node_subquery_from.yql
blob: 2da1c85969c4a58697c357ab2c1f04d006cd7e3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PRAGMA YqlSelect = 'force';
PRAGMA AnsiImplicitCrossJoin;

$x =
    SELECT
        1 AS a
;

$y = (
    SELECT
        2 AS b
);

SELECT
    a,
    b
FROM
    $x
,
    $y
;