oracle更新xml节点问题的一些细节
时间:2021-08-06 09:06:24|栏目:Oracle|点击: 次
有的节点是<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;
这样就能更新了
栏 目:Oracle
下一篇:Windows server 2008 R2(win7)登陆sqlplus错误ORA-12560和ORA-12557的解决方法
本文标题:oracle更新xml节点问题的一些细节
本文地址:http://www.codeinn.net/misctech/164559.html