UPDATEXML
Sintassi
UpdateXML(xml_target, xpath_expr, new_xml)
Spiegazione
Questa funzione sostituisce una singola porzione del frammento XML xml_target
wcon un nuovo frammento new_xml
, e restituisce il risultato. La porzione di xml_target
che viene rimpiazzato, corrisponde all'espressione XPath xpath_expr
, specificata dall'utente. Se non viene trovata alcuna corrispondenza, o se ne vengono trovate più di una, la funzione restituisce il frammento XML originale xml_target
. Tutti e tre gli argomenti dovrebbero essere stringhe.
Esempi
MariaDB [(none)]> SELECT -> UpdateXML('<a><b>ccc</b><d></d></a>', '/a', '<e>fff</e>') AS val1, -> UpdateXML('<a><b>ccc</b><d></d></a>', '/b', '<e>fff</e>') AS val2, -> UpdateXML('<a><b>ccc</b><d></d></a>', '//b', '<e>fff</e>') AS val3, -> UpdateXML('<a><b>ccc</b><d></d></a>', '/a/d', '<e>fff</e>') AS val4, -> UpdateXML('<a><d></d><b>ccc</b><d></d></a>', '/a/d', '<e>fff</e>') AS val5 -> \G *************************** 1. row *************************** val1: <e>fff</e> val2: <a><b>ccc</b><d></d></a> val3: <a><e>fff</e><d></d></a> val4: <a><b>ccc</b><e>fff</e></a> val5: <a><d></d><b>ccc</b><d></d></a> 1 row in set (0.00 sec)
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.