SQL Server中的XML数据进行insert、update、delete操作实现代码

2016-02-19 09:58 13 1 收藏

今天图老师小编要跟大家分享SQL Server中的XML数据进行insert、update、delete操作实现代码,精心挑选的过程简单易学,喜欢的朋友一起来学习吧!

【 tulaoshi.com - 编程语言 】

SQL Server中新增加了XML.Modify()方法,分别为xml.modify(insert),xml.modify(delete),xml.modify(replace)对应XML的插入,删除和修改操作。
本文以下面XML为例,对三种DML进行说明:
代码如下:

declare @XMLVar XML;
SET @XMLVar= '

catalog
book category="ITPro"
titleWindows Step By Step/title
authorBill Zack/author
price49.99/price
/book
book category="Developer"
titleDeveloping ADO .NET/title
authorAndrew Brust/author
price39.93/price
/book
book category="ITPro"
titleWindows Cluster Server/title
authorStephen Forte/author
price59.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]');

结果集为:
代码如下:

1: book category="ITPro"
2: first name="at first" /
3: titleWindows Step By Step/title
4: before name="before" /
5: authorBill Zack/author
6: after name="after" /
7: price49.99/price
8: last name="at last" /
9: /book



B.将多个元素插入文档中
代码如下:

--方法一:利用变量进行插入
DECLARE @newFeatures xml;
SET @newFeatures = N'; firstone element/first secondsecond element/second'
SET @XMLVar.modify(' )
insert sql:variable("@newFeatures")
into (/catalog[1]/book[1])'

--方法二:直接插入
set @XMLVar.modify(')
insert (firstone element/first,secondsecond element/second)
into (/catalog[1]/book[1]/author[1])'
SELECT @XMLVar.query('/catalog[1]/book[1]');

结果集为:
代码如下:

1: book category="ITPro"
2: titleWindows Step By Step/title
3: authorBill Zack
4: firstone element/first
5: secondsecond element/second
6: /author
7: price49.99/price
8: firstone element/first
9: secondsecond 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: price49.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: titleWindows Step By Step/title
4: authorBill Zack/author
5: price49.99/price
6: /book

注意:插入本文同样具体 as first,as last,before,after四种选项,可以参考A中的使用方法



E.插入注释节点
代码如下:

set @XMLVar.modify(
N'insert !--插入评论--
before (/catalog[1]/book[1]/title[1])' )
SELECT @XMLVar.query('/catalog[1]/book[1]');

结果集为:
1: book category="ITPro"
2: !--插入评论--
3: titleWindows Step By Step/title
4: authorBill Zack/author
5: price49.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: book category="ITPro"
2: ?Program "Instructions.exe" ?
3: titleWindows Step By Step/title
4: authorBill Zack/author
5: price49.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: titleWindows Step By Step/title
3: authorBill Zack/author
4: price49.99this is a 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: price49.99/price
5: /book
6: book category="ITPro"
7: titleWindows Cluster Server/title
8: authorStephen Forte/author
9: price59.99/price
10: /book
11: /catalog


3.XML.Modify(replace)语句介绍
代码如下:

--替换属性
set @XMLVar.modify(N'replace value of(/catalog[1]/book[1]/@category)
with ("替换属性")' )
--替换内容
set @XMLVar.modify(N'replace value of(/catalog[1]/book[1]/author[1]/text()[1])
with("替换内容")' )
--条件替换
set @XMLVar.modify(N'replace value of (/catalog[1]/book[2]/@category)
with(
if(count(/catalog[1]/book)4) then
"条件替换1"
else
"条件替换2")' )

SELECT @XMLVar.query('/catalog[1]');
[code]
结果集为:
[code]
1: catalog
2: book category="替换属性"
3: titleWindows Step By Step/title
4: author替换内容/author
5: price49.99/price
6: /book
7: book category="条件替换2"
8: titleDeveloping ADO .NET/title
9: authorAndrew Brust/author
10: price39.93/price
11: /book
12: book category="ITPro"
13: titleWindows Cluster Server/title
14: authorStephen Forte/author
15: price59.99/price
16: /book
17: /catalog

来源:http://www.tulaoshi.com/n/20160219/1592866.html

延伸阅读
示例: 创建Table 代码如下: CREATE TABLE [dbo].[xmlTable]( [id] [int] IDENTITY(1,1) NOT NULL, [doc] [xml] NULL ) 一。插入数据 1.通过XML文件插入 1.xml 代码如下: ?xml version='1.0' encoding='utf-8' ? dd a id="2"dafaf2/a a id="3"dafaf3/a a id="4"dafaf4/a /dd 代码如下: insert into xmlTable(doc) ...
本文讨论SQL Server 2005的新功能,它允许你将XML数据分解到关系格式中,而不必耗用太多内存。我们首先了解一下XQuery和它在SQL Server 2005中为开发者提供的功能。 XQuery介绍 XQuery,也称作XML Query,是一种查询XML数据的语言,允许你提取所需的节点和元素。它由W3C定义,可用于今天的大多数主流数据库引擎中,如Oracle、DB2...
@echo off cls set CLASSPATH=..\api\jogre.jar set CLASSPATH=%CLASSPATH%;. set CLASSPATH=%CLASSPATH%;classes set CLASSPATH=%CLASSPATH%;lib\dom4j.jar java org.jogre.server.JogreServer 建表 代码如下: create database con_test; use con_test; create table test(id int not null,txt varchar (70),primary key (id),ind...
标签: SQLServer
作为一名数据库管理员,在进行代码迁移之前,我总是尽力给提交于开发环境的代码一个完整的面貌。但是,不得不承认,我不能保证不发生任何可能破坏开发系统的事情。当这种情况发生时,可能的补救措施是恢复到目标代码的前一版本,目标代码可能是存储过程,函数等等。如果可能的话,你不想做但又不得不做的事情是从备份的数据库中恢复代码,但是...
如果你像我一样,那么你就会有一个在适当位置的SQL Agent任务需要重建和重新组织,而实际上只有你数据库中的索引需要这样的操作。如果你依赖于Microsoft SQL Server中的标准技术维护计划,那么重建所有索引的焦土政策将产生。更确切地说,无论这些操作是否要求被用到具体的索引中,索引的重建以及对所有锁和日志的搅拌都会发生。这就是为什...

经验教程

897

收藏

77
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部