union_positional_mix.sql 122 B

12345678910
  1. PRAGMA PositionalUnionAll;
  2. SELECT
  3. 1 as y, 2 as x
  4. UNION
  5. SELECT
  6. 1 as x, 2 as y
  7. UNION ALL
  8. SELECT
  9. 1 as y, 2 as x;