premap_common_inner.sql 218 B

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