trivial_view.sql 185 B

123456789
  1. PRAGMA DisableSimpleColumns;
  2. /* postgres can not */
  3. /* syntax version 1 */
  4. use plato;
  5. SELECT a.v, b.value
  6. FROM `Input1` VIEW `ksv` AS a
  7. JOIN `Input2` AS b
  8. ON a.k == b.key
  9. ORDER BY a.v;