讓我們來學習一些基本的XQuery通過看一個例子。
XML實例文檔
我們將使用下面的XML文檔在下面的例子。
把“books.xml”:
<?xml version="1.0" encoding="UTF-8"?>
<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="en">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="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
如何選擇節點從“books.xml”文件?
功能
XQuery使用函數來提取XML文檔中的數據。
該doc()函數用於打開"books.xml"的文件:
doc("books.xml")
路徑表達式
XQuery使用路徑表達式通過XML文檔中的元素進行導航。
下面的路徑表達式用於選擇在所有title元素"books.xml"文件:
doc("books.xml") /bookstore/book/title
(/書店選擇書店元件,/書選擇書店元素下的所有book元素,和/標題每個book元素下選擇所有的標題元素)
上面的XQuery的將提取以下內容:
<title lang="en">Everyday Italian</title>
<title lang="en">Harry Potter</title>
<title lang="en">XQuery Kick Start</title>
<title lang="en">Learning XML</title>
謂詞
XQuery使用謂語從XML文檔限制提取數據。
以下謂詞用於選擇具有小於30的值價元素bookstore元素下的所有book元素:
doc("books.xml")/bookstore/book [price<30]
上面的XQuery的將提取以下內容:
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>