gpt4 book ai didi

xml - Oracle:如何使用 updateXML 更新文档中的多个节点?

转载 作者:数据小太阳 更新时间:2023-10-29 02:55:36 24 4
gpt4 key购买 nike

我会写:

update my_table
set xml = updateXML(xml, '/a/b', '1')
where document_id = 123

现在,如果在同一个更新查询中我还想将/a/c 设置为 2(除此之外/a/b 还设置为 1)怎么办?我很想写:

update my_table
set
xml = updateXML(xml, '/a/b', '1'),
xml = updateXML(xml, '/a/c', '2')
where document_id = 123

但这给了我一个“ORA-00957:重复的列名”。关于如何做到这一点有什么建议吗?

最佳答案

文档表明XPath字符串和表达式可以重复 http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions205.htm#i1134878

那么试试

更新我的表放 xml = updateXML(xml, '/a/b', '1', '/a/c', '2')其中 document_id = 123

关于xml - Oracle:如何使用 updateXML 更新文档中的多个节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/405679/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com