pullup_context_dep.sql 215 B

1234567
  1. PRAGMA DisableSimpleColumns;
  2. use plato;
  3. from (select key, subkey || key as subkey, value, TablePath() as tp from Input1) as a
  4. join Input2 as b using(key)
  5. select a.key, a.subkey, a.tp, b.value
  6. order by a.key, a.tp;