使用SQL Server 2008表中的新值更新Xml属性

前端之家收集整理的这篇文章主要介绍了使用SQL Server 2008表中的新值更新Xml属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_301_1@我在sql Server 2008中有一个表,它有一些列.其中一列是Xml格式
我想更新一些属性.

例如,我的Xml列的名称是XmlText,它在5个第一行中的值如下:

<Identification Name="John"  Family="Brown"     Age="30" /> 
 <Identification Name="Smith" Family="Johnson"   Age="35" /> 
 <Identification Name="Jessy" Family="Albert"    Age="60" />
 <Identification Name="Mike"  Family="Brown"     Age="23" />
 <Identification Name="Sarah" Family="Johnson"   Age="30" />

我想更改30到40之间的所有Age属性,如下所示:

<Identification Name="John"  Family="Brown"     Age="40" /> 
 <Identification Name="Smith" Family="Johnson"   Age="35" /> 
 <Identification Name="Jessy" Family="Albert"    Age="60" />
 <Identification Name="Mike"  Family="Brown"     Age="23" />
 <Identification Name="Sarah" Family="Johnson"   Age="40" />

解决方法

从问题的早期版本看,您的XML实际上位于表中的不同行上.如果是这种情况,您可以使用它.
update YourTable set
  XMLText.modify('replace value of (/Identification/@Age)[1] with "40"')
where XMLText.value('(/Identification/@Age)[1]','int') = 30

使用表变量的工作示例.

declare @T table(XMLText xml)

insert into @T values('<Identification Name="John"  Family="Brown"   Age="30" />')
insert into @T values('<Identification Name="Smith" Family="Johnson" Age="35" />') 
insert into @T values('<Identification Name="Jessy" Family="Albert"  Age="60" />')
insert into @T values('<Identification Name="Mike"  Family="Brown"   Age="23" />')
insert into @T values('<Identification Name="Sarah" Family="Johnson" Age="30" />')

update @T set
  XMLText.modify('replace value of (/Identification/@Age)[1] with "40"')
where XMLText.value('(/Identification/@Age)[1]','int') = 30

select *
from @T
原文链接:https://www.f2er.com/mssql/77075.html

猜你在找的MsSQL相关文章