trivial_literals_multirow.sql 304 B

1234
  1. -- kikimr only: pragma kikimr.UnwrapReadTableValues = "false"; create table plato.Output (key varchar null, subkey varchar null, value varchar null, primary key (key)); commit;
  2. /* postgres can not */
  3. insert into plato.Output (key, subkey, value)
  4. values ("1", "2", "3"), ("4", "5", "6"), ("7", "8", "9");