SQL Server中的XML数据进行insert、update、delete_mssql2005

SQL Server中新增加了XML.Modify()方法,分别为xml.modify(insert),xml.modify(delete),xml.modify(replace)对应XML的插入,删除和修改操作。
本文以下面XML为例,对三种DML进行说明:
declare
@XMLVar xml = '
<catalog>
<book category="ITPro">
<title>Windows Step By Step</title>
<author>Bill Zack</author>
<price>49.99</price>
</book>
<book category="Developer">
<title>Developing ADO .NET</title>
<author>Andrew Brust</author>
<price>39.93</price>
</book>
<book category="ITPro">
<title>Windows Cluster Server</title>
<author>Stephen Forte</author>
<price>59.99</price>
</book>
</catalog>
'
1.XML.Modify(Insert)语句介绍
A.利用as first,at last,before,after四个参数将元素插入指定的位置
set
@XMLVar.modify
(
'insert <first name="at first" /> as first into (/catalog[1]/book[1])'
)
set
@XMLVar.modify
(
'insert <last name="at last"/> as last into (/catalog[1]/book[1])'
)
set
@XMLVar.modify
(
'insert <before name="before"/> before (/catalog[1]/book[1]/author[1])'
)
set
@XMLVar.modify
(
'insert <after name="after"/> after (/catalog[1]/book[1]/author[1])'
)
SELECT
@XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
<book category="ITPro"
>
<first name="at first"
/>
<title>Windows Step By Step</title>
<before name="before"
/>
<author>Bill Zack</author>
<after name="after"
/>
<price>49.99</price>
<last name="at last"
/>
</book>
B.将多个元素插入文档中
--方法一:利用变量进行插入
DECLARE @newFeatures xml;
SET @newFeatures = N'

<first>one element</first>
<second>second element</second>'
SET @XMLVar.modify('
)
insert sql:variable("@newFeatures")
into (/catalog[1]/book[1])'
--方法二:直接插入
set @XMLVar.modify('
)
insert (<first>one element</first>,<second>second element</second>)
into (/catalog[1]/book[1]/author[1])'
SELECT @XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
1:
<
book
category
="ITPro"
>
2:
<
title
>
Windows Step By Step</
title
>
3:
<
author
>
Bill Zack
4:
<
first
>
one element</
first
>
5:
<
second
>
second element</
second
>
6:
</
author
>
7:
<
price
>
49.99</
price
>
8:
<
first
>
one element</
first
>
9:
<
second
>
second element</
second
>
10:
</
book
>
C.将属性插入文档中
--使用变量插入
declare @var nvarchar(10) = '变量插入'
set @XMLVar.modify(
'insert (attribute var {sql:variable("@var")})
)
into (/catalog[1]/book[1])'
--直接插入
set @XMLVar.modify(
'insert (attribute name {"直接插入"})
)
into (/catalog[1]/book[1]/title[1])'
--多值插入
set @XMLVar.modify(
'insert (attribute Id {"多值插入1"},attribute name {"多值插入2"})
)
into (/catalog[1]/book[1]/author[1])'
SELECT @XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
1:
<book category="ITPro"
var="变量插入"
>
2:
<title name="直接插入"
>Windows Step By Step</title>
3:
<author Id="多值插入1"
name="多值插入2"
>Bill Zack</author>
4:
<price>49.99</price>
5:
</book>
D.插入文本节点
set
@XMLVar.modify
(
'insert text{"at first"} as first
)
into (/catalog[1]/book[1])'
SELECT
@XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
1:
<
book
category
="ITPro"
>
2:
at first
3:
<
title
>
Windows Step By Step</
title
>
4:
<
author
>
Bill Zack</
author
>
5:
<
price
>
49.99</
price
>
6:
</
book
>
注意:插入本文同样具体 as first,as last,before,after四种选项,可以参考A中的使用方法
E.插入注释节点
set @XMLVar.modify(
'insert <!--插入评论-->
)
before (/catalog[1]/book[1]/title[1])'
SELECT @XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
1:
<book category="ITPro"
>
2:
<!--插入评论-->
3:
<title>Windows Step By Step</title>
4:
<author>Bill Zack</author>
5:
<price>49.99</price>
6:
</book>
注意插入注释节点同样具体 as first,as last,before,after四种选项,可以参考A中的使用方法
F.插入处理指令
set @XMLVar.modify(
'insert <?Program "Instructions.exe" ?>
)
before (/catalog[1]/book[1]/title[1])'
SELECT @XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
1: <bookcategory="ITPro">
2: <?Program"Instructions.exe"?>
3: <title>Windows Step By Step</title>
4: <author>Bill Zack</author>
5: <price>49.99</price>
6: </book>
注意插入处理指令同样具体 as first,as last,before,after四种选项,可以参考A中的使用方法
G.根据 if 条件语句进行插入
set @XMLVar.modify(
'insert
)
if (/catalog[1]/book[1]/title[2]) then
text{"this is a 1 step"}
else ( text{"this is a 2 step"} )
into (/catalog[1]/book[1]/price[1])'
SELECT @XMLVar.query('/catalog[1]/book[1]'
);
结果集为:
1: <book category="ITPro">
2: <title>Windows Step By Step</title>
3: <author>Bill Zack</author>
4: <price>49.99this isa 2 step</price>
5: </book>
2.XML.Modify(delete)语句介绍
--删除属性
set @XMLVar.modify('delete /catalog[1]/book[1]/@category')
--删除节点
set @XMLVar.modify('delete /catalog[1]/book[1]/title[1]')
--删除内容
set @XMLVar.modify('delete /catalog[1]/book[1]/author[1]/text()')
--全部删除
set @XMLVar.modify('delete /catalog[1]/book[2]')
SELECT @XMLVar.query('/catalog[1]');
结果集为:
1: <catalog>
2: <book>
3: <author />
4: <price>49.99</price>
5: </book>
6: <book category="ITPro">
7: <title>Windows Cluster Server</title>
8: <author>Stephen Forte</author>
9: <price>59.99</price>
10: </book>
11: </catalog>
3.XML.Modify(replace)语句介绍
--替换属性
set @XMLVar.modify('replace value of(/catalog[1]/book[1]/@category))
with ("替换属性")'
--替换内容
set @XMLVar.modify('replace value of(/catalog[1]/book[1]/author[1]/text()[1]))
with("替换内容")'
--条件替换
set @XMLVar.modify('replace value of (/catalog[1]/book[2]/@category))
with(
if(count(/catalog[1]/book)>4) then
"条件替换1"
else
"条件替换2")'
SELECT @XMLVar.query('/catalog[1]'
);
结果集为:
1: <catalog>
2: <bookcategory="替换属性">
3: <title>Windows Step By Step</title>
4: <author>替换内容</author>
5: <price>49.99</price>
6: </book>
7: <bookcategory="条件替换2">
8: <title>
Developing ADO .NET</title>
9:
<author>
Andrew Brust</author>
10: <price>39.93</price>
11: </book>
12: <bookcategory="ITPro">
13: <title>Windows Cluster Server</title>
14: <author>Stephen Forte</author>
15: <price>59.99</price>
16: </book>
17: </catalog>

时间: 2024-10-02 07:55:29

SQL Server中的XML数据进行insert、update、delete_mssql2005的相关文章

用VB存取SQL Server中的图像数据

本文介绍MIS SQL Server对图像数据的存储机制和存取方法.针对VB开发工具,介绍了一种通过ADO Field 对象的GetChunk 方法和AppendChunk 方法来存取MIS SQL Server中的图像数据的方法. 在一个完善的医院信息MIS中,图像数据的存取是必不可少的,比如X光片.CT像片的保存.一方面,这些图像数据在远程诊疗为准确诊断病情提供了重要的依据,另一方面,也为快速查阅病人资料提供了基本条件.图像数据的存取在其它应用系统如GIS中也有广泛的应用. 1.SQL Se

[Python]Python/PHP如何查询sql server中NTEXT类型数据

[Python]Python/PHP如何查询sql server中NTEXT类型数据 Version Date Creator Description 1.0.0.1 2006-11-23 郑昀 草稿   继续阅读之前,我们假设您熟悉以下知识: n         Python / PHP n         SQL Server 2000 SP4以上版本的Microsoft sql server n         pymssql n         NTEXT类型 本文讨论了在Python中

Sql Server中清空所有数据表中的记录_MsSql

Sql Server中清空所有数据表中的记录 清空所有数据表中的记录: 复制代码 代码如下: exec sp_msforeachtable  @Command1 ='truncate table ?' 删除所有数据表: 复制代码 代码如下: exec sp_msforeachtable 'delete   N''?''' 清空SQL Server数据库中所有表数据的方法(有约束的情况) 其实删除数据库中数据的方法并不复杂,为什么我还要多此一举呢,一是我这里介绍的是删除数据库的所有数据,因为数据之

.SQL Server中 image类型数据的比较

原文:.SQL Server中 image类型数据的比较 在SQL Server中如果你对text.ntext或者image数据类型的数据进行比较.将会提示:不能比较或排序 text.ntext 和 image 数据类型,除非使用 IS NULL 或 LIKE 运算符.不过image也是不支持like比较的.那怎么样对数据库中的图片做比较呢.对于这种大型对象的处理,在Oracle中有有专门的函数DBMS_LOB.COMPARE,而SQLSERVER中没有专门的处理函数,只能通过使用substri

删除sql server中重复的数据

原文:删除sql server中重复的数据 with list_numbers as( select Name, AuthorOrTime, Url, Price, EstimatePrice, Size, Category, ROW_NUMBER() over (order by Name, AuthorOrTime, Url, Price, EstimatePrice, Size, Category) as 'rownumber' from Arts)delete list_numbers

SQL Server中读取XML文件的简单做法

SQL Server 2000使得以XML导出数据变得更加简单,但在SQL Server 2000中导入XML数据并对其进行处理则有些麻烦. 如果你参考Books Online(BOL),你会发现有相关的条目,包括OPENXML以及 OPENROWSET.所有的这些例子都支持将XML文本作为已经声明的变量,这对于经常处理文本的用户来说非常方便,但对于希望在开发中读取XML文件并进行相应处理的开发人员来说就不是这样了.处理这样的问题,或许最好从内到外来对其进行分析. OPENXML是一个rowse

SQL Server中读取XML文件的简单方法

SQL Server 2000使得以XML导出数据变得更加简单,但在SQL Server 2000中导入XML数据并对其进行处理则有些麻烦. 如果你参考Books Online(BOL),你会发现有相关的条目,包括OPENXML以及 OPENROWSET.所有的这些例子都支持将XML文本作为已经声明的变量,这对于经常处理文本的用户来说非常方便,但对于希望在开发中读取XML文件并进行相应处理的开发人员来说就不是这样了.处理这样的问题,或许最好从内到外来对其进行分析. OPENXML是一个rowse

SQL Server中sp_spaceused统计数据使用的空间总量不正确的原因

  很多时候,我们经常使用sp_spaceused来查看表的空间使用情况,上个月群里有个网友说他使用DELETE删除了数据后,使用sp_spaceused查看,发现该表的分配的空间总量(reserved)与数据使用的空间总量(data)没有变化,当时和他讨论了并分析了一下原因,随手记录了一下这个案例,这个周末刚好有点时间,正好分析整理一下这个案例.分享在这篇文章.如下所示,我们先构造数据,我们的测试案例比较极端,刚刚保证每个页面(page)刚好存储两条记录.如下所示:     USE Test

SQL Server 2005的XML数据修改语言

作为对XQuery语言的扩展,XML DML为XML数据操作提供了更大的灵活性,而不再仅仅是对XML数据进行一些查询操作.通过XML DML,用户可以像操作关系表一样对XML中的节点内容进行插入.更新和删除操作.XML DML需要通过xml数据类型的modify方法进行调用. 1.insert insert用于将Expression1标识的一个或多个节点作为Expression2标识的节点的子节点或同级节点插入.语法格式如下: insert Expression1 ( {as first | a