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

我在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

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 &#39;EastRiver&#39; 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...