sublink_where_any.sql 208 B

1234
  1. --!syntax_pg
  2. select * from (select 10 as x) a where x > any (values (1),(2));
  3. select * from (select 2 as x) a where x > any (values (1),(2));
  4. select * from (select 1 as x) a where x > any (select 1 limit 0);