bush_in_in_in.sql 297 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, i4.value AS Branch_Leaf
  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. INNER JOIN Leaves AS i4 ON i3.leaf = i4.key;