select_relabel.sql 311 B

123
  1. /* postgres can not */
  2. -- kikimr only: pragma kikimr.UnwrapReadTableValues = "false"; create table plato.Output (key varchar null, subkey varchar null, value varchar null, primary key (key)); commit;
  3. insert into plato.Output with truncate (key, subkey, value) select key, subkey, "1" as value from plato.Input;