bush_in_in.sql 250 B

1234567
  1. PRAGMA DisableSimpleColumns;
  2. USE plato;
  3. SELECT i1.key AS Key, i1.value AS Value, i2.value AS Leaf, i3.value AS Branch
  4. FROM Roots AS i1
  5. INNER JOIN Leaves AS i2 ON i1.leaf = i2.key
  6. INNER JOIN Branches AS i3 ON i1.branch = i3.key
  7. ORDER BY Leaf, Branch;