summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/select/exists_with_table.yql
blob: 5aeef98d9a3cb0d0f24349969330c36629da3cf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
use plato;

$ex = NOT EXISTS (
    SELECT
        TRUE
    FROM Input
);

SELECT $ex