Du kan använda kombinationen av existsNode
och extract
fungerar enligt följande.
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;
*
används som jokertecken för att matcha valfri underordnad nod. Till exempel matchar /PO/*/STREET alla gatuelement som är barnbarn till PO-elementet.
Utdata:
attr1 ABC
attr2 XYZ
attr3 PQR