SQL (ORACLE):ORDER BY 和 LIMIT
我想按属性对数据库中的所有数据进行排序,并且仅在使用 LIMIT 和 OFFSET 之后进行排序。
像这样的查询:
SELECT select_list
FROM table_expression
[ ORDER BY ... ]
[ LIMIT { number | ALL } ] [ OFFSET number ]
我知道一旦找到排序结果的第一个 row_count 行,排序就会结束。我可以在调用 LIMIT 和 OFFSET 之前对所有数据进行排序吗?
I want do sorting by property ALL data in my db and ONLY AFTER that use LIMIT and OFFSET.
Query like this:
SELECT select_list
FROM table_expression
[ ORDER BY ... ]
[ LIMIT { number | ALL } ] [ OFFSET number ]
I know the sorting ends as soon as it has found the first row_count rows of the sorted result. Can I do sorting all data before calling LIMIT and OFFSET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 12.1 之前,Oracle 不支持
LIMIT
或OFFSET
关键字。如果要检索结果集中的第 N 行到第 M 行,您需要类似以下内容:或使用分析函数:
这些方法中的任何一种都可以排序,为您提供排序结果的第 N 行到 M 行。
在 12.1 及更高版本中,您可以使用
OFFSET
和/或FETCH [FIRST | NEXT]
运算符:Prior to 12.1, Oracle does not support the
LIMIT
orOFFSET
keywords. If you want to retrieve rows N through M of a result set, you'd need something like:or using analytic functions:
Either of these approaches will sort give you rows N through M of the sorted result.
In 12.1 and later, you can use the
OFFSET
and/orFETCH [FIRST | NEXT]
operators: