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

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>

(0)

相关推荐

  • javascript instanceof 与typeof使用说明

    typeof用以获取一个变量的类型,typeof一般只能返回如下几个结果:number,boolean,string,function,object,undefined.我们可以使用typeof来获取一个变量是否存在,如 if(typeof a != "undefined"){},而不要去使用if(a)因为如果a不存在(未声明)则会出错,对于Array,Null等特殊对象使用typeof一律返回object,这正是typeof的局限性. 如果我们希望获取一个对象是否是数组,或判断某个变

  • SQLServer 2008中SQL增强之三 Merge(在一条语句中使用Insert,Update,Delete)

    SQL Server 2008提供了一个增强的SQL命令Merge,用法参看MSDN:http://msdn.microsoft.com/zh-cn/library/bb510625.aspx 功能:根据与源表联接的结果,对目标表执行插入.更新或删除操作.例如,根据在另一个表中找到的差异在一个表中插入.更新或删除行,可以对两个表进行同步. 我们看一个例子,假如,有一总产品列表,一个分店产品列表,需要从分店添加产品时更新总产品列表. 总产品表,分店产品表结构完全一致: 复制代码 代码如下: if

  • 理解Javascript_07_理解instanceof实现原理

    那么instanceof的这种行为到底是如何实现的呢,现在让我们揭开instanceof背后的迷雾. instanceof原理 照惯例,我们先来看一段代码: 复制代码 代码如下: function Cat(){} Cat.prototype = {} function Dog(){} Dog.prototype ={} var dog1 = new Dog(); alert(dog1 instanceof Dog);//true alert(dog1 instanceof Object);//t

  • JavaScript必知必会(六) delete in instanceof

    in in 判断 左边 的字符串或者能转换成字符串的是否属于 右边 的属性. var data = { x: , y: };//定义了直接对象 alert("x" in data);//true ,x 是data 的一个属性 alert( in data);//false , 是data的属性值. var arr = [, , ];//定义了直接数组对象 alert( in arr);//true ,arr 数组的index包括,,, 是他的一个[]属性. alert( in arr)

  • MSSQL2005 INSERT,UPDATE,DELETE 之OUTPUT子句使用实例

    复制代码 代码如下: -->Title:Generating test data -->Author:wufeng4552 -->Date :2009-10-07 15:16:26 if object_id('ta')is not null drop table ta go create table ta(ID int identity,[name] varchar(10)) insert ta([name]) select 'a' union all select 'b' union

  • Linq to SQL Delete时遇到问题的解决方法

    1.1. Code1: using (PubsDataContext pubsContent = new PubsDataContext()) {     pubsContent.Log = Console.Out;     Author author = pubsContent.Authors.Single(a => a.au_id == "111-11-1111");     pubsContent.Authors.DeleteOnSubmit(author);     pu

  • JavaScript中instanceof与typeof运算符的用法及区别详细解析

    JavaScript中的instanceof和typeof常被用来判断一个变量是什么类型的(实例),但它们的使用还是有区别的: typeof 运算符返回一个用来表示表达式的数据类型的字符串. typeof expression ; expression 参数是需要查找类型信息的任意表达式. 说明typeof 是一个一元运算符,放在一个运算数之前. typeof 运算符把类型信息当作字符串返回.typeof 返回值有六种可能: "number" ,"string",

  • JavaScript constructor和instanceof,JSOO中的一对欢喜冤家

    至少每个尝试JavaScriptOO的程序员都花费很多精力用在面向对象机制的模拟上而非业务本身. 这对Java,C++甚至Php的开发者来讲都是难以想象的. 更糟糕的是模拟OO对于JavaScript高级程序员都有着邪恶的吸引. 因为干这个事儿超然于业务之上,有种创造新编程语言一般的快感,可以令IQ尽情挥洒. 正如前些年大家都想把自个网站的common.js写成个框架一样.直到YUI,JQuery等等的强势推出才稍有平息. 然而虽然各个框架都有对JavaScriptOO模拟,但还未到有谁谁谁可以

  • javascript instanceof 内部机制探析

    比如: 复制代码 代码如下: // 代码 1 function Pig() {} var pig = new Pig(); alert(pig instanceof Pig); // => true function FlyPig() {} FlyPig.prototype = new Pig(); var flyPig = new FlyPig(); alert(flyPig instanceof Pig); // => true 来看另一段代码: 复制代码 代码如下: // 代码 2 fu

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

    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&

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

    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"> <title>Windows

  • Sql Server中实现行数据转为列显示

    目录 1.效果如下 2.解决方案 3.代码如下 场景:行数据的某列值想作为字段列显示 1.效果如下 2.解决方案 使用pivot进行行转列,以及结合分组 3.代码如下 select * from( select DeptName,InputCode from FWD_Department group by DeptName,InputCode ) as a pivot( max(InputCode) for DeptName in([随访中心],[全院],[家庭化产房],[妇科二],妇科一) )

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

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

  • SQL Server中的XML数据类型详解

    目录 一.创建测试数据,指定字段数据类型为XML 1.创建表 2.插入测试数据 3.插入XML文件数据 4.创建索引 二.查询XML数据 1.query(XPath条件):返回xml 类型的节点内容 2.value(XPath条件,数据类型):返回标量值 3.exist(XPath条件):返回是否存在 4.nodes(XPath条件):返回由符合条件的节点组成的多行一列的结果表 三.modify():修改XML修改XML字段 1.modify(insert)增加节点 2.modify(delet

  • SQL Server中Table字典数据的查询SQL示例代码

    前言 在数据库系统原理与设计(第3版)教科书中这样写道: 数据库包含4类数据: 1.用户数据 2.元数据 3.索引 4.应用元数据 其中,元数据也叫数据字典,定义如下: 下面这篇文章就来给大家分享一个关于查询SQL Server Table 结构的SQL 语句. T-SQL 如下: SELECT (case when a.colorder=1 then d.name else '' end) 表名, a.colorder 字段序号,a.name 字段名, (case when a.colorde

  • SQL Server中带有OUTPUT子句的INSERT,DELETE,UPDATE应用

    OUTPUT是SQL SERVER2005的新特性,可以从数据修改语句中返回输出,可以看作是"返回结果的DML". INSERT.DELETE.UPDATE均支持OUTPUT子句. 在OUTPUT子句中,可以引用特殊表inserted和deleted,使用inserted和deleted表与在触发器中使用的非常相似. 在INSERT,DELETE,UPDATE中OUTPUT的区别 对于INSERT,可以引用inserted表以查询新行的属性. 对于DELETE,可以引用deleted表

  • SQL Server中删除重复数据的几个方法

    方法一 复制代码 代码如下: declare @max integer,@id integer declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) > 1 open cur_rows fetch cur_rows into @id,@max while @@fetch_status=0 begin select @max = @max -1 set rowcount

  • SQL Server中的Forwarded Record计数器影响IO性能的解决方法

    一.简介 最近在一个客户那里注意到一个计数器很高(Forwarded Records/Sec),伴随着间歇性的磁盘等待队列的波动.本篇文章分享什么是forwarded record,并从原理上谈一谈为什么Forwarded record会造成额外的IO. 二.存放原理 在SQL Server中,当数据是以堆的形式存放时,数据是无序的,所有非聚集索引的指针存放指向物理地址的RID.当数据行中的变长列增长使得原有页无法容纳下数据行时,数据将会移动到新的页中,并在原位置留下一个指向新页的指针,这么做的

  • 在SQL Server中迁移数据的几种方法

    1.通过工具"DTS"的设计器进行导入或者导出 DTS的设计器功能强大,支持多任务,也是可视化界面,容易操作,但知道的人一般不 多,如果只是进行SQL Server数据库中部分表的移动,用这种方法最好,当然,也可以进行全部表的移动.在SQL Server Enterprise Manager中,展开服务器左边的+,选择数据库,右击,选择All tasks/Import Data...(或All tasks/Export Data...),进入向导模式,按提示一步一步走就行了,里面分得很

随机推荐