3.2 查詢root下面的第一個item節點
select _x.query('root/item[1]')
from xmlTest
結果:
3.3 查詢root下面的第一個item節點的值
select _x.value('(root/item)[1]','varchar(50)')
from xmlTest
結果:
3.3 查詢root下面的第二個item節點的attr2屬性值
select _x.value('(root/item/@attr2)[2]','varchar(50)')
from xmlTest
結果:
3.4 查詢表中每條記錄的xml字段的item節點值,全部列出來
SELECT t2.c1.value('.','varchar(20)') as items
from xmlTest
cross apply _x.nodes('root/item') as t2(c1)
結果:
3.5 查詢表中id=1記錄的xml的所有item字段的attr2屬性值
SELECT t2.c1.value('@attr2','varchar(20)') as attr2
from xmlTest
cross apply _x.nodes('root/item') as t2(c1)
where id='1'
結果:
3.6 查詢id為1的所有節點中attr1屬性為a1的第一個匹配節點的attr2屬性值
select _x.value('(root/item[@attr1="a1"]/@attr2)[1]','varchar(50)')
from xmlTest where id='1'
結果:
3.7 多表查詢
例如:存在另外1個table:t2,其字段xmlid關聯表xmlTest,而attr1關聯xmlTest的_x字段中的attr1屬性值。
查詢表xmlTest中id=‘1'記錄中_x字段內item節點中attr1為表t2中attr1字段值時,item節點中attr2的屬性值
select xmlTest._x.value('(root/item[@attr1=sql:column("t2.attr1")]/@attr2)[1]','varchar(50)') as attr2,t2.attr1
from xmlTest join t2 on t2.xmlid=xmlTest.id
where xmlTest.id='1'
4.修改數據
4.1 修改表中id=1記錄的第一個item節點值
UPDATE xmlTest
set _x.modify('replace value of (root/item/text())[1] with "xxxxx"')
where id='1'
select _x.query('root/item[1]') as item1
from xmlTest
結果:
4.2 修改表中id=2記錄的第二個item節點的attr2屬性值
UPDATE xmlTest
set _x.modify('replace value of (root/item/@attr2)[2] with "2222b"')
where id='2'
select _x.query('root/item[2]') as item1
from xmlTest
結果: