How do I calculate a node's depth in a parent-child model under MySQL?
I'll need the depth to, among other things, create the indent in my list (coded with PHP).
|
How do I calculate a node's depth in a parent-child model under MySQL? I'll need the depth to, among other things, create the indent in my list (coded with PHP).
| |||||||
feedback
|
|
This might be an old question, but I just want to let others know that I found a solution some months ago. I did recently write about it here: http://en.someotherdeveloper.com/articles/adjacency-list-model-with-depth-calculation/ | |||
|
feedback
|
|
That depends on the actual implementation of your hierarchy in the database. If you are using nested sets model (http://dev.mysql.com/tech-resources/articles/hierarchical-data.html) you can retrieve the full parent-to-child path via a single select. Update: Ok, since you're going with adjacency list model I suggest to store node level in the table. Not only will it give you the node depth in one query, but it will also allow you to retrieve the entire path to that node in one query (albeit that query would have to be dynamically generated):
Since you know that your node is on level N there's no need for left joins and, given appropriate indexes on id / parent_id this should be reasonably fast. | |||||||||||||
feedback
|