left_trivial.sql 149 B

12345
  1. PRAGMA DisableSimpleColumns;
  2. select Input1.key, Input1.subkey, Input3.value
  3. from plato.Input1
  4. left join plato.Input3 using (key)
  5. order by Input1.key;