作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何使用 xquery 更新 SQL Server 2005 中 XML 节点的部分文本
在下面的例子中,我想用“excellent”替换“very”这个词
declare @xml as xml
set @xml = '<root><info>well hello this is a very good example</info></root>'
declare @replacement as varchar(50)
set @replacement = 'excellent'
declare @search as varchar(50)
set @search = 'very'
set @xml.modify('replace value of (/root/info/text())[1]
with replace((/root/info/text())[1],sql:variable("@search"),sql:variable("@replacement"))'
)
select @xml
最佳答案
由于您要替换的这个词不是 XML 标记的内容 - 而只是该内容的一部分 - 您可能只想查看基于文本的替换选项。
如果你有这样的东西,它会起作用:
declare @xml as xml
set @xml = '<root><info>well hello this is a <rating>very good</rating> example</info></root>'
<rating>....</rating>
的内容。用别的东西:
declare @replacement as varchar(50)
set @replacement = 'excellent'
set
@xml.modify('replace value of (/root/info/rating/text())[1]
with sql:variable("@replacement")')
select @xml
<info>
的文本内容。并对其进行文本替换:
DECLARE @xml as XML
SET @xml = '<root><info>well hello this is a very good example</info></root>'
DECLARE @newcontent VARCHAR(1000)
SELECT @newcontent = @xml.value('(/root/info/text())[1]', 'VARCHAR(1000)')
-- replace "very" with "excellent"
SELECT @newcontent = REPLACE(@newcontent, 'very', 'excellent')
SET
@xml.modify('replace value of (/root/info/text())[1]
with sql:variable("@newcontent")')
SELECT @xml
关于sql-server-2005 - 如何在 SQL Server 2005 中替换部分 XML 节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5869147/
我是一名优秀的程序员,十分优秀!