Oracle Pl/SQL: Loop through XMLTYPE nodes - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T09:47:04Zhttp://stackoverflow.com/feeds/question/985894http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/985894/oracle-pl-sql-loop-through-xmltype-nodes4Oracle Pl/SQL: Loop through XMLTYPE nodespistacchio2009-06-12T09:49:12Z2009-06-12T10:16:22Z
<p>Hi,
I have a XMLTYPE with the following content:</p>
<pre><code><?xml version="1.0"?>
<users>
<user>
<name>user1</name>
</user>
<user>
<name>user2</name>
</user>
<user>
<name>user3</name>
</user>
</users>
</code></pre>
<p>How can I loop in PL/SQL through all the elements "user"? Thanks</p>
http://stackoverflow.com/questions/985894/oracle-pl-sql-loop-through-xmltype-nodes/985944#9859441Answer by Diederik Hoogenboom for Oracle Pl/SQL: Loop through XMLTYPE nodesDiederik Hoogenboom2009-06-12T10:00:22Z2009-06-12T10:00:22Z<p>You can use XQuery. Check out the select statement below. v_xml_doc is the XMLTYPE variable containing the XML data.</p>
<pre><code>select name
from XMLTable('for $i in /users/user
return $i'
passing v_xml_doc
columns name varchar2(200) path 'name'
)
</code></pre>
http://stackoverflow.com/questions/985894/oracle-pl-sql-loop-through-xmltype-nodes/985985#9859853Answer by Vincent Malgrat for Oracle Pl/SQL: Loop through XMLTYPE nodesVincent Malgrat2009-06-12T10:16:22Z2009-06-12T10:16:22Z<p>Hi Pistacchio,</p>
<p>You can loop through the elements using <code>EXTRACT</code> and <code>XMLSequence</code> (splits the XML into distinct chunks -- here users) like this:</p>
<pre><code>SQL> SELECT extractvalue(column_value, '/user/name') "user"
2 FROM TABLE(XMLSequence(XMLTYPE(
3 '<?xml version="1.0"?>
4 <users>
5 <user>
6 <name>user1</name>
7 </user>
8 <user>
9 <name>user2</name>
10 </user>
11 <user>
12 <name>user3</name>
13 </user>
14 </users>').extract('/users/user'))) t;
user
--------
user1
user2
user3
</code></pre>