如何在“选择"中添加偏移量在 Oracle 11g 中查询?

How to add offset in a quot;selectquot; query in Oracle 11g?(如何在“选择中添加偏移量在 Oracle 11g 中查询?)
本文介绍了如何在“选择"中添加偏移量在 Oracle 11g 中查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 Oracle 11g 的选择"查询中添加偏移量.我只知道如何通过例如 rownum <= 5 添加限制这个问题不是重复的,我已经检查了其他问题并且与我的无关.

How to add an offset in a "select" query in Oracle 11g. I only know how to add the limit by e.g rownum <= 5 this question is not a duplicate, I already checked the other questions and are not related to mine.

那么,如何在 Oracle 11g 中添加偏移量?

So, how to add the offset in Oracle 11g ?

推荐答案

您可以通过指定 OFFSET12c 上轻松完成.

You can do it easily on 12c by specifying OFFSET.

12c中,

SELECT val
FROM   table
ORDER BY val
OFFSET 4 ROWS FETCH NEXT 4 ROWS ONLY;

要在 11g 及之前做同样的事情,你需要使用 ROWNUM 两次,inner queryouter query分别.

To do the same on 11g and prior, you need to use ROWNUM twice, inner query and outer query respectively.

11g 中的相同查询,

SELECT val
FROM   (SELECT val, rownum AS rnum
        FROM   (SELECT val
                FROM   table
                ORDER BY val)
        WHERE rownum <= 8)
WHERE  rnum > 4;

这里OFFSET是4.

这篇关于如何在“选择"中添加偏移量在 Oracle 11g 中查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)