XQuery - FLWOR



FLWOR 是“For, Let, Where, Order by, Return”的缩写。下表显示了 FLWOR 表达式中它们的含义:

  • F - For - 选择所有节点的集合。

  • L - Let - 将结果存入 XQuery 变量中。

  • W - Where - 选择条件指定节点。

  • O - Order by - 根据条件对指定的节点进行排序。

  • R - Return - 返回最终结果。

示例

以下是一个包含一组书籍信息的示例 XML 文档。我们将使用 FLWOR 表达式来检索价格大于 30 的书籍的书名。

books.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 文档上要执行的查询表达式。

books.xqy

let $books := (doc("books.xml")/books/book)
return <results>
{
   for $x in $books
   where $x/price>30
   order by $x/price
   return $x/title
}
</results>

结果

<title lang="en">Learn XQuery in 24 hours</title>
<title lang="en">Learn .Net in 24 hours</title>

验证结果

要验证结果,请用上述 XQuery 表达式替换 books.xqy(在环境设置一章中给出)的内容并执行 XQueryTester Java 程序。

广告