Oracle Pl/SQL: Loop through XMLTYPE nodes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:47:04Z http://stackoverflow.com/feeds/question/985894 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/985894/oracle-pl-sql-loop-through-xmltype-nodes 4 Oracle Pl/SQL: Loop through XMLTYPE nodes pistacchio 2009-06-12T09:49:12Z 2009-06-12T10:16:22Z <p>Hi, I have a XMLTYPE with the following content:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;users&gt; &lt;user&gt; &lt;name&gt;user1&lt;/name&gt; &lt;/user&gt; &lt;user&gt; &lt;name&gt;user2&lt;/name&gt; &lt;/user&gt; &lt;user&gt; &lt;name&gt;user3&lt;/name&gt; &lt;/user&gt; &lt;/users&gt; </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#985944 1 Answer by Diederik Hoogenboom for Oracle Pl/SQL: Loop through XMLTYPE nodes Diederik Hoogenboom 2009-06-12T10:00:22Z 2009-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#985985 3 Answer by Vincent Malgrat for Oracle Pl/SQL: Loop through XMLTYPE nodes Vincent Malgrat 2009-06-12T10:16:22Z 2009-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&gt; SELECT extractvalue(column_value, '/user/name') "user" 2 FROM TABLE(XMLSequence(XMLTYPE( 3 '&lt;?xml version="1.0"?&gt; 4 &lt;users&gt; 5 &lt;user&gt; 6 &lt;name&gt;user1&lt;/name&gt; 7 &lt;/user&gt; 8 &lt;user&gt; 9 &lt;name&gt;user2&lt;/name&gt; 10 &lt;/user&gt; 11 &lt;user&gt; 12 &lt;name&gt;user3&lt;/name&gt; 13 &lt;/user&gt; 14 &lt;/users&gt;').extract('/users/user'))) t; user -------- user1 user2 user3 </code></pre>