/*sql xml 入門: 一、xml: 能認識元素、屬性和值 二、xpath: 尋址語言,相似windows目錄的查找(沒用過dir命令的話就去面壁) 語法格式,這些語法能夠組合爲條件: "."表示本身,".."表示父親,"/"表示兒子,"//"表示後代, "name"表示按名字查找,"@name"表示按屬性查找 "集合[條件]" 表示根據條件取集合的子集,條件能夠是 數 值:數字,last(),last()-數字 等 布爾值:position()<數字,@name='條件',name='條件' 條件是布爾值的時候能夠合併計算:and or 三、xquery: 基於xpath標的準查詢語言,sqlserver xquery包含以下函數 exist(xpath條件):返回布爾值表示節點是否存在 query(xpath條件):返回由符合條件的節點組成的新的xml文檔 value(xpath條件,數據類型):返回指定的標量值,xpath條件結果必須惟一 nodes(xpath條件): 返回由符合條件的節點組成的一行一列的結果表 */ declare @data xml set @data=' <bookstore> <book category="COOKING"> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="CHILDREN"> <title lang="jp">Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB"> <title lang="en">XQuery Kick Start</title> <author>James McGovern</author> <author>Per Bothner</author> <author>Kurt Cagle</author> <author>James Linn</author> <author>Vaidyanathan Nagarajan</author> <year>2003</year> <price>49.99</price> </book> <book category="WEB"> <title lang="cn">Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore> ' --測試語句,若是不理解語法請參考上面的xpath規則和xquery函數說明 --一、文檔 select @data --二、任意級別是否存在price節點 select @data.exist('//price') --三、獲取全部book節點 select @data.query('//book') --四、獲取全部包含lang屬性的節點 select @data.query('//*[@lang]') --五、獲取第一個book節點 select @data.query('//book[1]') --六、獲取前兩個book節點 select @data.query('//book[position()<=2]') --七、獲取最後一個book節點 select @data.query('//book[last()]') --八、獲取price>35的全部book節點 select @data.query('//book[price>35]') --九、獲取category="WEB"的全部book節點 select @data.query('//book[@category="WEB"]') --十、獲取title的lang="en"的全部book節點 select @data.query('//book/title[@lang="en"]') --十一、獲取title的lang="en"且 price>35的全部book節點 select @data.query('//book[./title[@lang="en"] or price>35 ]') --十二、獲取title的lang="en"且 price>35的第一book的(第一個)title select @data.query('//book[./title[@lang="en"] and price>35 ]').value('(book/title)[1]','varchar(max)') --1三、等價於12 select @data.value('(//book[./title[@lang="en"] and price>35 ]/title)[1]','varchar(max)') --1四、獲取title的lang="en"且 price>35的第一book的(第一個)title的lang屬性 select @data.value('((//book[@category="WEB" and price>35 ]/title)[1]/@lang)[1]','varchar(max)') --1五、獲取第一本書的title select Tab.Col.value('(book/title)[1]','varchar(max)') as title from @data.nodes('bookstore')as Tab(Col) --1六、獲取每本書的第一個author select Tab.Col.value('author[1]','varchar(max)') as title from @data.nodes('//book')as Tab(Col) --1七、獲取全部book的全部信息 select T.C.value('title[1]','varchar(max)') as title, T.C.value('year[1]','int') as year, T.C.value('title[1]','varchar(max)')as title, T.C.value('price[1]','float') as price, T.C.value('author[1]','varchar(max)') as author1, T.C.value('author[2]','varchar(max)') as author2, T.C.value('author[3]','varchar(max)') as author3, T.C.value('author[4]','varchar(max)') as author4 from @data.nodes('//book') as T(C) --1八、獲取不是日語(lang!="jp")且價格大於35的書的全部信息 select T.C.value('title[1]','varchar(max)') as title, T.C.value('year[1]','int') as year, T.C.value('title[1]','varchar(max)')as title, T.C.value('price[1]','float') as price, T.C.value('author[1]','varchar(max)') as author1, T.C.value('author[2]','varchar(max)') as author2, T.C.value('author[3]','varchar(max)') as author3, T.C.value('author[4]','varchar(max)') as author4 from @data.nodes('//book[./title[@lang!="jp"] and price>35 ]') as T(C)
來源:http://www.jb51.net/article/19659.htmnode