Deeply nested subqueries for traversing trees in MySQL
- by nickf
I have a table in my database where I store a tree structure using the hybrid Nested Set (MPTT) model (the one which has lft and rght values) and the Adjacency List model (storing parent_id on each node).
my_table (id, parent_id, lft, rght, alias)
This question doesn't relate to any of the MPTT aspects of the tree but I thought I'd leave it in…