有的节点是
- 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;
这样就能更新了