say I have xml in a SQL xml type field e.g.
@x='<root>
<item>
<title></title>
<item>
<title></title>
</item>
</item>
</root>'
How would I go about getting nth level items in a query?
Obviously to get the first level you would use;
select
t.p.query('.')
from
@x.nodes('/root/item') t(p)
and to get the next level as well you would add
cross apply
@x.nodes('/root/item/item')
but at runtime we do not know the depth the xml may go to.
Can anyone point me in the right direction.
Thanks!