Is it possible to query a tree structure table in MySQL in a single query, to any depth? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T15:39:36Z http://stackoverflow.com/feeds/question/169817 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any 10 Is it possible to query a tree structure table in MySQL in a single query, to any depth? Cameron Booth 2008-10-04T05:42:04Z 2009-06-22T15:12:13Z <p>I'm thinking the answer is no, but I'd love it it anybody had any insight into how to crawl a tree structure to any depth in SQL (MySQL), but with a single query</p> <p>More specifically, given a tree structured table (id, data, data, parent_id), and one row in the table, is it possible to get <em>all</em> descendants (child/grandchild/etc), or for that matter all ancestors (parent/grandparent/etc) without knowing how far down or up it will go, using a single query?</p> <p>Or is using some kind of recursion require, where I keep querying deeper until there are no new results?</p> <p>Specifically, I'm using Ruby and Rails, but I'm guessing that's not very relevant.</p> <p>Thanks in advance for any advice!!</p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169834#169834 -1 Answer by Dan for Is it possible to query a tree structure table in MySQL in a single query, to any depth? Dan 2008-10-04T05:54:58Z 2008-10-04T05:54:58Z <p>You're almost definitely going to want to employ some recursion for that. And if you're doing that, then it would be trivial (in fact easier) to get the entire tree rather than bits of it to a fixed depth. </p> <p>In really rough pseudo-code you'll want something along these lines:</p> <pre><code>getChildren(parent){ children = query(SELECT * FROM table WHERE parent_id = parent.id) return children } printTree(root){ print root children = getChildren(root) for child in children { printTree(child) } } </code></pre> <p>Although in practice you'd rarely want to do something like this. It will be rather inefficient since it's making one request for every row in the table, so it'll only be sensible for either small tables, or trees that aren't nested too deeply. To be honest, in either case you probably want to limit the depth.</p> <p>However, given the popularity of these kinds of data structure, there may very well be some MySQL stuff to help you with this, specifically to cut down on the numbers of queries you need to make.</p> <p>Edit: Having thought about it, it makes very little sense to make all these queries. If you're reading the entire table anyway, then you can just slurp the whole thing into RAM - assuming it's small enough!</p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169835#169835 7 Answer by aaronjensen for Is it possible to query a tree structure table in MySQL in a single query, to any depth? aaronjensen 2008-10-04T05:55:05Z 2008-10-04T05:55:05Z <p>Here are several resources:</p> <p><a href="http://forums.mysql.com/read.php?10,32818,32818#msg-32818" rel="nofollow">http://forums.mysql.com/read.php?10,32818,32818#msg-32818</a></p> <p><a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">http://dev.mysql.com/tech-resources/articles/hierarchical-data.html</a></p> <p><a href="http://lists.mysql.com/mysql/201896" rel="nofollow">http://lists.mysql.com/mysql/201896</a></p> <p>Basically, you'll need to do some sort of cursor in a sproc or query or build an adjacency table. I'd avoid recursion outside of the db, depending on how deep your tree is that could get really slow/sketchy.</p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169850#169850 0 Answer by Daniel Spiewak for Is it possible to query a tree structure table in MySQL in a single query, to any depth? Daniel Spiewak 2008-10-04T06:07:57Z 2008-10-04T06:07:57Z <p>SQL isn't a Turing Complete language, which means you're not going to be able to perform this sort of looping. You can do some very clever things with SQL and tree structures, but I can't think of a way to describe a row which has a certain id "in its hierarchy" for a hierarchy of arbitrary depth.</p> <p>Your best bet is something along the lines of what @Dan suggested, which is to just work your way through the tree in some other, more capable language. You can actually generate a query string in a general-purpose language using a loop, where the query is just some convoluted series of joins (or sub-queries) which reflects the depth of the hierarchy you are looking for. That would be more efficient than looping and multiple queries.</p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169876#169876 -1 Answer by Daniel Beardsley for Is it possible to query a tree structure table in MySQL in a single query, to any depth? Daniel Beardsley 2008-10-04T06:45:59Z 2008-10-04T06:45:59Z <p>I came across this problem before and had one wacky idea. You could store a <strong>field in each record that is concatenated string of it's direct ancestors' ids</strong> all the way back to the root.</p> <p>Imagine you had records like this (indentation implies heirarchy and the numbers are id, ancestors.</p> <ul> <li>1, "1" <ul> <li>2, "2,1" <ul> <li>5, "5,2,1"</li> <li>6, "6,2,1" <ul> <li>7, "7,6,2,1"</li> <li>11, "11,6,2,1"</li> </ul></li> </ul></li> <li>3, "3,1" <ul> <li>8, "8,3,1"</li> <li>9, "9,3,1"</li> <li>10, "10,3,1"</li> </ul></li> </ul></li> </ul> <p>Then to <strong>select the descendents of id:6</strong>, just do this</p> <pre><code>SELECT FROM table WHERE ancestors LIKE "%6,2,1" </code></pre> <p>Keeping the ancestors column up to date might be more trouble than it's worth to you, but it's feasible solution in any DB.</p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169884#169884 12 Answer by Dave Cheney for Is it possible to query a tree structure table in MySQL in a single query, to any depth? Dave Cheney 2008-10-04T06:55:15Z 2008-10-04T06:55:15Z <p>Yes, this is possible, it's a called a Modified Preorder Tree Traversal, as best described here</p> <p><a href="http://rads.stackoverflow.com/amzn/click/1558609202" rel="nofollow">Joe Celko's Trees and Hierarchies in SQL for Smarties</a></p> <p>A working example (in PHP) is provided here</p> <p><a href="http://www.sitepoint.com/article/hierarchical-data-database/2/" rel="nofollow">http://www.sitepoint.com/article/hierarchical-data-database/2/</a></p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/350621#350621 0 Answer by Jason S for Is it possible to query a tree structure table in MySQL in a single query, to any depth? Jason S 2008-12-08T19:43:21Z 2008-12-08T19:43:21Z <p>Celko's technique (nested sets) is pretty good. I also have used an adjacency table with fields "ancestor" and "descendant" and "distance" (e.g. direct children/parents have a distance of 1, grandchildren/grandparents have a distance of 2, etc). </p> <p>This needs to be maintained, but is fairly easy to do for inserts: you use a transaction, then put the direct link (parent, child, distance=1) into the table, then INSERT IGNORE a SELECTion of existing parent&amp;children by adding distances (I can pull up the SQL when I have a chance), which wants an index on each of the 3 fields for performance. Where this approach gets ugly is for deletions... you basically have to mark all the items that have been affected and then rebuild them. But an advantage of this is that it can handle arbitrary acyclic graphs, whereas the nested set model can only do straight hierarchies (e.g. each item except the root has one and only one parent).</p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/1027758#1027758 0 Answer by Bryan Ward for Is it possible to query a tree structure table in MySQL in a single query, to any depth? Bryan Ward 2009-06-22T15:12:13Z 2009-06-22T15:12:13Z <p>I found this site to be a useful resource in learning how to create a similar query:</p> <p><a href="http://www.webinade.com/web-development/creating-recursive-sql-calls-for-tables-with-parent-child-relationships" rel="nofollow">http://www.webinade.com/web-development/creating-recursive-sql-calls-for-tables-with-parent-child-relationships</a></p>