All,
Assume a XML table with entries (rows) like the one below
<root>
<l1-2>
<l2-3>1</l2-3>
<l2-4>one</l2-4>
<l2-3>11</l2-3>
<l2-4>one one</l2-4>
<l2-3>222</l2-3>
<l2-4>two two two</l2-4>
</l1-2>
</root>
What is the best approach to create a result set as listed low from this (through some combination of table,xmlsequence,extract or something else)
col1 col2
<l2-3>1</l2-3> <l2-4>one</l2-4>
<l2-3>11</l2-3> <l2-4>one one</l2-4>
<l2-3>222</l2-3> <l2-4>two two two</l2-4>
Thanks,
Peter