XQuery 示例
让我们通过一个示例学习一些基本的 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 文档中的元素之间导航。
以下路径表达式用于选择 "books.xml" 文件中的所有 title 元素
doc("books.xml")/bookstore/book/title
(/bookstore 选择 bookstore 元素,/book 选择 bookstore 元素下的所有 book 元素,/title 选择每个 book 元素下的所有 title 元素)
上面的 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 文档中提取的数据。
以下谓词用于选择 bookstore 元素下的所有 book 元素,这些元素具有 price 元素,其值为小于 30
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>