从oracle中的重复xml节点中提取特定的xml节点

时间:2017-01-10 12:50:14

标签: sql xml oracle extract oracle-xml-db

给定的是" my_xml"列" XYZ"表

<?xml version="1.0" encoding="UTF-8"?>
<India>
  <city>
    <string>ADI</string>
    <string>Ahmedabad</string>
  </city>
  <city>
    <string>GNR</string>
    <string>Gandhinagar</string>
  </city>
  <city>
    <string>PUN</string>
    <string>Pune</string>
  </city>
  <city>
    <string>RJT</string>
    <string>Rajkot</string>
  </city>
</India>

我正在尝试提取第二个string节点的值,其中第一个string节点值为ADI

输出应该是&#34;艾哈迈达巴德&#34;仅

尝试失败:

select t.my_xml.extract('/India/city/string[2]/text()').getStringVal() from XYZ t where t.my_xml.existsNode('/India/city[string[1] = "ADI"]') = 1;

上述查询的输出为AhmedabadGandhinagarPuneRajkot

预期输出:Ahmedabad

如何在此处提取string节点的特定节点值?

3 个答案:

答案 0 :(得分:2)

使用XMLTable提取值:

SELECT t.*
FROM   XYZ x,
       XMLTable(
         '/India/city'
         PASSING x.my_xml
         COLUMNS string1 CHAR(3)      PATH './string[1]',
                 string2 VARCHAR2(20) PATH './string[2]'
       ) t
WHERE  t.string1 = 'ADI';

答案 1 :(得分:1)

您希望选择 将ADI文本作为第一个字符串的节点。

试试这个:

select 
    t.my_xml.extract('//city[./string[1]/text() = "ADI"]/string[2]/text()').getStringVal()
from XYZ t
    where t.my_xml.existsNode('/India/city[string[1] = "ADI"]') = 1;

答案 2 :(得分:0)

1)使用xmlquery和flwor xquery

select xmlcast( xmlquery('for $i in ./India/city where $i//string[1]/text() = $cond return $i/string[2]/text()' passing xmltype(q'~<India>
  <city>
    <string>ADI</string>
    <string>Ahmedabad</string>
  </city>
  <city>
    <string>GNR</string>
    <string>Gandhinagar</string>
  </city>
  <city>
    <string>PUN</string>
    <string>Pune</string>
  </city>
  <city>
    <string>RJT</string>
    <string>Rajkot</string>
  </city>
</India>~'), 'ADI' as "cond"    returning content) as varchar2(20)) result  from dual; 

2)如果您期望多行尝试xmltable。

select *  from xmltable('$doc/India/city' passing xmltype(q'~<India>
  <city>
    <string>ADI</string>
    <string>Ahmedabad</string>
  </city>
  <city>
    <string>GNR</string>
    <string>Gandhinagar</string>
  </city>
  <city>
    <string>PUN</string>
    <string>Pune</string>
  </city>
   <city>
    <string>ADI</string>
    <string>Ahmedabad</string>
  </city>
  <city>
    <string>RJT</string>
    <string>Rajkot</string>
  </city>
</India>~') as "doc" 
columns 
   string1 varchar2(20) path'./string[1]/text()'
   , string2 varchar2(20) path'./string[2]/text()'

)
where string1='ADI'

和带有flwor xquery的xmltable

select column_value  from xmltable('for $el in $doc/India/city where $el//string[1]/text() = "ADI" return $el/string[2]/text()' passing xmltype(q'~<India>
  <city>
    <string>ADI</string>
    <string>Ahmedabad</string>
  </city>
  <city>
    <string>GNR</string>
    <string>Gandhinagar</string>
  </city>
  <city>
    <string>PUN</string>
    <string>Pune</string>
  </city>
   <city>
    <string>ADI</string>
    <string>Ahmedabad</string>
  </city>
  <city>
    <string>RJT</string>
    <string>Rajkot</string>
  </city>
</India>~') as "doc" )
;
相关问题