XQuery - 第一个应用程序
例子
以下是一个示例 XML 文档,其中包含书店各种书籍的记录。
书籍.xml
<?xml version="1.0" encoding="UTF-8"?> <books> <book category="JAVA"> <title lang="en">Learn Java in 24 Hours</title> <author>Robert</author> <year>2005</year> <price>30.00</price> </book> <book category="DOTNET"> <title lang="en">Learn .Net in 24 hours</title> <author>Peter</author> <year>2011</year> <price>70.50</price> </book> <book category="XML"> <title lang="en">Learn XQuery in 24 hours</title> <author>Robert</author> <author>Peter</author> <year>2013</year> <price>50.00</price> </book> <book category="XML"> <title lang="en">Learn XPath in 24 hours</title> <author>Jay Ban</author> <year>2010</year> <price>16.50</price> </book> </books>
以下是一个示例 Xquery 文档,其中包含要在上述 XML 文档上执行的查询表达式。目的是获取价格大于30的那些XML节点的标题元素。
书本网
for $x in doc("books.xml")/books/book where $x/price>30 return $x/title
结果
<title lang="en">Learn .Net in 24 hours</title> <title lang="en">Learn XQuery in 24 hours</title>
验证结果
要验证结果,请将books.xqy的内容(在环境设置章节中给出)替换为上面的 XQuery 表达式并执行 XQueryTester java 程序。
XQuery 表达式
让我们理解上面 XQuery 表达式的每一部分。
函数的使用
doc("books.xml")
doc() 是用于定位 XML 源的 XQuery 函数之一。这里我们传递了“books.xml”。考虑到相对路径,books.xml 应位于 books.xqy 所在的同一路径中。
XPath 表达式的使用
doc("books.xml")/books/book
XQuery 大量使用 XPath 表达式来定位要进行搜索的 XML 所需部分。在这里,我们选择了 books 节点下所有可用的 book 节点。
迭代对象
for $x in doc("books.xml")/books/book
XQuery 将 xml 数据视为对象。在上面的示例中,$x 表示选定的节点,而 for 循环则迭代节点集合。
应用条件
where $x/price>30
由于$x代表选中的节点,因此使用“/”来获取所需元素的值;“where”子句用于为搜索结果设置条件。
返回结果
return $x/title
由于$x代表选中的节点,“/”用于获取所需元素的值,价格,标题;“return”子句用于从搜索结果中返回元素。