SQL Server中的XML数据进行insert、update、delete
发布时间:2024-01-28 08:59:50
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>


猜你喜欢
- 首先创建数据库hncu,建立stud表格。添加数据:create table stud(sno varchar(30) not null p
- 废话不多说了,直接给大家贴代码了,具体代码如下所述: var aLi = document.querySelectorAll('.a
- 由于业务需要,要查询客户的ip地址,将部分地区的客户过滤出来,开始想到使用ip数据库,发现读取纯真数据库的难度对我来说有些大,而我目前的时间
- select先说switch...case...switch...case... 很常用,且很好理解。其作用和if...else...一样。
- 正在看的ORACLE教程是:ORACLE常见错误代码的分析与解决三。 -----------------------------
- 在多个文件或者不同语言协同的项目中,python脚本经常需要从命令行直接读取参数。万能的python就自带了argprase包 使
- 本文实例总结了JS常见简单正则表达式验证功能。分享给大家供大家参考,具体如下:下面都是一些比较常用简单的验证,像那些特殊的复杂的情况这里不进
- Python 多进程和数据传递的理解python不仅线程用的是系统原生线程,进程也是用的原生进程进程的用法和线程大同小异import mul
- 前言:在搭建开始前,我们先来梳理下web服务工作流程,先看下图:1、用户(PC)向web服务器发起http请求2、web服务器判断用户请求文
- 以下是menu.asp代码 程序代码 <% '-----------------------------------
- 本文实例讲述了Python实现螺旋矩阵的填充算法。分享给大家供大家参考,具体如下:afanty的分析:关于矩阵(二维数组)填充问题自己动手推
- 需求描述数据库中 num字段值为:实现的效果:需要将一行数据变成多行实现的sqlSELECT SUBSTRING_INDEX(SUBSTRI
- Python打包分发工具setuptools:曾经 Python 的分发工具是 distutils,但它无法定义包之间的依赖关系。setup
- 看了很多网上的方法,写入文件后打开文件看确实不再是乱码,但是从文件中读入json时发现了乱码,可能是读文件默认的编码格式不对。下面读写方法可
- 下面直接记录下配置主从库的操作:(本文用的是mysql5.0以上)1.在主库建立要同步的数据库,建立主库的帐号和修改主库配置首先连接上数据库
- window对文件夹的操作主要包括移动/剪切/复制,本篇文章主要用jQuery来实现,下面一起来了解一下把。1.先看下效果吧!2.在添加一个
- python是支持多线程的,并且是native的线程。主要是通过thread和threading这两个模块来实现的。thread是比较底层的
- python中注释在python中的注释一般分为单行注释、多行注释以及文档注释。注释描述在实际开发过程中,有效的代码注释不仅可以提升个人的工
- python十进制转二进制python中十进制转二进制使用 bin() 函数。bin() 返回一个整数 int 或者长整数 long int
- string是c#中的类 String是.net Framework的类 用string需要通过再次编译,所以直接用String速度会更快·