t-sql中的xml操做在咱們平時作項目的過程當中用的不多,由於咱們處理的數據量不多,除非一些用到xml的地方,t-sql中xml操做通常用在數據量很大,性能優化的地方,固然我在平時作項目的時候也是沒用過,可是學一點,以備不時之需。node
今天就講一下t-sql中簡單的xml操做語法。sql
1,咱們先建一個表:Student(id,content /xml)編程
示例代碼:性能優化
create table Student (id int primary key,content xml) insert into dbo.Student values(1000,'<Students> <Student id="1001"> <name>aaa</name> <age>20</age> <birthday>1991-2-20</birthday> </Student> <Student id="1002"> <name>bbb</name> <age>21</age> <birthday>1990-2-20</birthday> </Student> </Students>')
2,添加學生節點,就是添加一個學生,用到modify的insert into語句,後面的/爲xml節點的路徑。性能
示例代碼:fetch
update dbo.Student set content.modify(' insert <Student id="1003"> <name>aaa</name> <age>20</age> <birthday>1991-2-20</birthday> </Student> as last into (/Students)[1] ')
3,添加屬性,用到modify的insert into語句。優化
示例代碼:spa
update dbo.Student set content.modify(' insert attribute sex {"男"} into (/Students/Student[@id="1003"])[1] ')
4,添加字段add,用到modify的insert into語句。code
示例代碼:xml
update dbo.Student set content.modify(' insert <add>江蘇豐縣</add> as last into (/Students/Student[@id="1003"])[1] ')
5,刪除學生節點,用到modify的delete語句,[@id="1003"]爲刪除的條件,像t-sql中的where同樣。
示例代碼:
update dbo.Student set content.modify(' delete /Students/Student[@id="1003"] ')
6,更改學生節點字段,用到modify語句中的replace語句,text()表示的是add節點的值。
示例代碼:
update dbo.Student set content.modify(' replace value of (/Students/Student[@id="1003"]/add/text())[1] with "江蘇徐州" ')
7,更改學生節點屬性,用到modify語句中的replace語句,@id表示的是add節點的屬性的值。
示例代碼:
update dbo.Student set content.modify(' replace value of (/Students/Student[@id="1003"]/@id)[1] with 1004 ')
8,查詢全部學生的ID和姓名。
示例代碼:
select Student1.content.value('./@id','int') as ID, Student1.content.value('(/Students/Student/name)[1]','nvarchar(30)') as StuName from dbo.Student CROSS APPLY content.nodes('/Students/Student') as Student1(content)
上面說的都是xml一些簡單的操做,下面咱們結合t-sql中的xml操做,存儲過程和事務作一個實例,以便咱們更好的去理解,運用。
實例要求:定義一個存儲過程,要求傳遞一個xml變量類型,將xml內的指定的ID記錄,從Table1所有掉,刪除操做要求利用事務;
1,首先咱們須要建一張表,而後插一些數據。
示例代碼:
create table Table1 ( ID int primary key, Name nvarchar(50) not null ) insert into dbo.Table1 values(1,'Name1'),(2,'Name2'),(3,'Name3') select * from Table1
2,實例要求咱們須要建一個存儲過程,而後傳遞一個xml變量,而後將xml內的指定的ID記錄,從Table1所有掉,並且刪除操做用事務。
咱們存儲過程就得將xml進行解析獲得xml中的ID記錄,這個操做咱們就得用到遊標,遊標我會在之後的作講解,遊標遍歷獲得的ID記錄,
查詢Table1表中是否存在,若是存在記錄下來,並用事務去刪除。
示例代碼:
create proc proc_Table1 ( @ID xml ) as begin declare @Temp table(ID1 int) insert into @Temp(ID1) select ParamValues123.ID2.value('./@id','int') as asdfasdf FROM @ID.nodes('/nodes/node') as ParamValues123(ID2) begin transaction t1 declare @j int; select @j=count(ID1) from @Temp; declare curs_Table1 cursor for select ID1 from @Temp; declare @ID2 int; declare @i int; set @i=0; open curs_Table1; fetch next from curs_Table1 into @ID2; while @@FETCH_STATUS = 0 begin if(exists(select ID from dbo.Table1 where ID=@ID2)) set @i=@i+1; fetch next from curs_Table1 into @ID2; end close curs_Table1; deallocate curs_Table1; if @i=@j begin delete from dbo.Table1 Where ID in ( SELECT ParamValues123.ID2.value('./@id','int') as ID FROM @ID.nodes('/nodes/node') as ParamValues123(ID2) ) commit transaction t1; end else rollback transaction t1; --drop table @Temp; --select * from Table1 Where ID in --( --SELECT ParamValues123.ID2.value('./@id','int') as asdfasdf --FROM @ID.nodes('/nodes/node') as ParamValues123(ID2) --) end
以上是t-sql中的xml簡單用法,有錯誤的地方但願園友指正。
之後還會整理一些編程的知識分享給你們,但願你們多多關注。。。