How do I retreive hierarchic XML in t-sql? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-12T21:29:38Z http://stackoverflow.com/feeds/question/265335 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/265335/how-do-i-retreive-hierarchic-xml-in-t-sql 0 How do I retreive hierarchic XML in t-sql? Manu http://stackoverflow.com/users/2133 2008-11-05T14:46:23Z 2008-11-07T14:13:40Z <p>My table has the following schema:</p> <p>id, parent_id, text</p> <p>Given the following data I would like to return an xml hierarchy:</p> <p>Data: (1,null,'x'), (2,1,'y'), (3,1,'z'), (4,2,'a')</p> <p>XML:<br /> [row text="x"]<br /> [row text="y"]<br /> [row text="a"/]<br /> [/row]<br /> [row text="z"/]<br /> [/row] </p> <p><hr /></p> <p>Added: the hierachy has no maximum depth</p> http://stackoverflow.com/questions/265335/how-do-i-retreive-hierarchic-xml-in-t-sql/265359#265359 -1 Answer by S.Lott for How do I retreive hierarchic XML in t-sql? S.Lott http://stackoverflow.com/users/10661 2008-11-05T14:51:03Z 2008-11-05T14:51:03Z <p>This requires a "transitive closure". You need to process the data recursively to find all children under a given parent.</p> <p>Roughly the algorithm looks like this.</p> <pre><code>for top in cursor( nodes where each parent==null ): build_tree( top ) def build_tree( parent ): emit opening tag for child in cursor( nodes where parent == parent ): build_tree( child ) emit closing tag </code></pre> <p>Note that some SQL interpreters may have trouble with the recursion -- they may not open a fresh, new cursor as necessary. Each cursor, however, must be distinct, since you will have as many open cursors as your tree has levels.</p> http://stackoverflow.com/questions/265335/how-do-i-retreive-hierarchic-xml-in-t-sql/265479#265479 1 Answer by Cristian Libardo for How do I retreive hierarchic XML in t-sql? Cristian Libardo http://stackoverflow.com/users/16526 2008-11-05T15:27:34Z 2008-11-05T15:27:34Z <p>If you have a finite depth the there's a quickie that looks like this:</p> <pre><code>SELECT T.*, T2.*, T3.* /*, ...*/ FROM myTable T INNER JOIN myTable T2 ON T2.parent_id=T.id INNER JOIN myTable T3 ON T3.parent_id=T2.id /* ... */ WHERE T.parent_id IS NULL FOR XML AUTO </code></pre> <p>I'm not sure but it might be possible to devise a similar result using <a href="http://msdn.microsoft.com/en-us/library/ms186243.aspx" rel="nofollow">recursive queries</a>. Of course, it's much easier (and probably makes more sense) in the application level.</p>