XQuery - 如果那么否则
XQuery 提供了一个非常有用的 if-then-else 构造来检查所传递的输入值的有效性。下面给出的是 if-then-else 结构的语法。
句法
if (condition) then ... else ...
例子
我们将使用以下 books.xml 文件并向其应用包含 if-then-else 构造的 XQuery 表达式,以检索价格值大于 30 的书籍的书名。
书籍.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>40.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 文档。
书本网
<result> { if(not(doc("books.xml"))) then ( <error> <message>books.xml does not exist</message> </error> ) else ( for $x in doc("books.xml")/books/book where $x/price>30 return $x/title ) } </result>
输出
<result> <title lang="en">Learn .Net in 24 hours</title> <title lang="en">Learn XQuery in 24 hours</title> </result>
验证结果
要验证结果,请将books.xqy的内容(在环境设置章节中给出)替换为上面的 XQuery 表达式并执行 XQueryTester java 程序。