Oracle
 sql >> Database >  >> RDS >> Oracle

Come aprire i dati XML in Oracle

un paio di metodi sono descritti in questo SO:

Oracle Pl/SQL:passa attraverso i nodi XMLTYPE

Aggiornamento: è piuttosto semplice poiché entrambi i metodi sono puro SQL (puoi chiamare questo SQL da PL/SQL o qualsiasi strumento che interagisca con il DB):

SQL> WITH openedXml AS (
  2  SELECT extractvalue(column_value, '/theRow/First') FIRST,
  3         extractvalue(column_value, '/theRow/Last') LAST,
  4         to_number(extractvalue(column_value, '/theRow/Age')) Age
  5    FROM TABLE(XMLSequence(XMLTYPE('<theRange>
  6      <theRow><First>Bob</First><Last>Smith</Last><Age>30</Age></theRow>
  7      <theRow><First>Sue</First><Last>Jones</Last><Age>34</Age></theRow>
  8      <theRow><First>John</First><Last>Bates</Last><Age>40</Age></theRow>
  9  </theRange>').extract('/theRange/theRow')))
 10  )
 11  SELECT *
 12    FROM openedxml
 13   WHERE age BETWEEN 30 AND 35;

FIRST     LAST       AGE
--------- -------- -----
Bob       Smith       30
Sue       Jones       34