XQuery 按升序和降序排列
Posted
技术标签:
【中文标题】XQuery 按升序和降序排列【英文标题】:XQuery order by ascending and descending 【发布时间】:2011-08-25 11:22:09 【问题描述】:在 XQuery 中,如何按升序和降序排序?
我从教程中得到了以下内容:
for $x in doc("books.xml")/bookstore/book
where $x/price>30
order by $x/title
return $x/title
会不会
for $x in doc("books.xml")/bookstore/book
where $x/price>30
order by $x/title ascending
return $x/title
【问题讨论】:
【参考方案1】:是的,您可以在order by..
表达式的末尾使用ascending
(默认)或descending
。
这是 W3C XQuery 规范相关部分的链接:
http://www.w3.org/TR/xquery/#doc-xquery-OrderSpec
【讨论】:
so it would befor $x in doc("books.xml")/bookstore/book where $x/price>30 order by increasing $x/title return $x/title 或者是 $x in doc("books.xml")/bookstore/book where $x/price>30 order by $x/title return $x/title 升序 我写了“在表达式之后”,我的意思是这样的:... order by $x/title ascending ...
(就像你在问题中写的那样,这是正确的语法)。【参考方案2】:
查看我对this question的回复。代码演示了降序排序。
对于升序排序,ascending
关键字可以省略。
【讨论】:
以上是关于XQuery 按升序和降序排列的主要内容,如果未能解决你的问题,请参考以下文章