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

Recupero di elementi XML da XMLType Oracle

Puoi usare la combinazione di existsNode e extract funziona come segue.

SELECT b.SOFT_ATTRIBUTES,
  CASE
    WHEN existsNode (a.soft_attributes ,'/*/'
      ||b.SOFT_ATTRIBUTES) = 1
    THEN a.soft_attributes.extract('/*/'
      ||b.SOFT_ATTRIBUTES
      ||'/text()').getStringVal()
  END value
FROM xml_analysis a,
  xml_softattributes b
WHERE a.id = b.id;

* viene utilizzato come carattere jolly per corrispondere a qualsiasi nodo figlio. Ad esempio, /PO/*/STREET corrisponde a qualsiasi elemento street che è un nipote dell'elemento PO.

Uscita:

attr1   ABC
attr2   XYZ
attr3   PQR