oracle更新xml节点问题的一些细节
编程学习 2021-07-05 16:08www.dzhlxh.cn编程入门
本节主要介绍了oracle更新xml节点问题的一些细节,需要的朋友可以参考下
有的节点是<emali/> 这样的,所以直接
update table1 e set e.xxx_xml=updatexml(e.xxx_xml,'/data/contact/email/text()', 'value' ) where 1=1;
是不能更新的
update table1 e set e.xxx_xml=updatexml(e.xxx_xml,'/data/contact/email', '<email>'|| 'value' || '<email/>' ) where 1=1;
这样就能更新了