有的节点是
sql;">
update table1 e set e.xxx_xml=updatexml(e.xxx_xml,'/data/contact/email/text()','value'
)
where 1=1;
是不能更新的
sql;">
update table1 e set e.xxx_xml=updatexml(e.xxx_xml,'/data/contact/email',''|| 'value' || ' '
)
where 1=1;
这样就能更新了
原文链接:https://www.f2er.com/oracle/65289.html