select_except_all.sql 282 B

123456789101112
  1. --!syntax_pg
  2. select * from (values (1),(1),(1),(1),(1)) a(x)
  3. except all
  4. select * from (values (1),(1)) a(x);
  5. select * from (values (1),(1)) a(x)
  6. except all
  7. select * from (values (1),(1)) a(x);
  8. select * from (values (1),(1)) a(x)
  9. except all
  10. select * from (values (1),(1),(1)) a(x);