union_all_tablerow.sql 148 B

1234567891011
  1. INSERT INTO plato.Output
  2. SELECT * FROM (
  3. SELECT
  4. TableRow() as x
  5. FROM plato.Input
  6. UNION ALL
  7. SELECT
  8. 1 as y
  9. FROM plato.Input
  10. )
  11. flatten columns