aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/select_intersect.sql
blob: 183b3cefb071011fa02a50797e66d33e806000fc (plain) (blame)
1
2
3
4
5
6
7
8
--!syntax_pg
select * from (values (1),(1),(1)) a(x)
intersect
select * from (values (1),(1)) a(x);

select * from (values (1),(1),(1)) a(x)
intersect
select * from (values (2)) a(x);