zoukankan      html  css  js  c++  java
  • ORACLE分页查询SQL语法

    首先清楚–语句写的顺序:select … from… where… group by… having… order by…
    –执行顺序:from… where…group by… having… select … order by…

    ---oracle中的分页
    --rownum行号:当我们做select操作的时候,
    --每查询出一行记录,就会在该行上加上一个行号,
    --行号从1开始,依次递增,不能跳着走。
    ---emp表工资倒序排列后,每页五条记录,查询第二页。
    --排序操作会影响rownum的顺序,因为是select先执行,然后再排序
    
    select rownum,e.* from emp e order by e.sal desc
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    在这里插入图片描述

    --如果涉及到排序,但是还是要使用rownum的话,我们可以再次嵌套查询。
    select rownum,t.* from(
    select rownum,e.* from emp e order by e.sal desc) t;
    
    • 1
    • 2
    • 3

    在这里插入图片描述

    –rownum行号不能写上大于一个正数

    ---emp表工资倒序排列后,每页五条记录,查询第二页。
    --写的顺序:select ... from... where.... group by... having... order by..
    --执行顺序:from... where...group by... having.... select ... order by...
    --rownum行号不能写上大于一个正数
    select rownum,e.*
    from(select * from emp order by sal desc) e
    where rownum<11
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    能查出来
    在这里插入图片描述

    select rownum,e.*
    from(select * from emp order by sal desc) e
    where rownum<11 and rownum>5
    

    却查不出来 因为先执行的是where条件, rownum行号:当我们做select操作的时候,
    –每查询出一行记录,就会在该行上加上一个行号,
    –行号从1开始,依次递增,不能跳着走。小于11满足但是大于5就不满足了
    在这里插入图片描述

    但是可以下面这样:

    select * from(
        select rownum rn,tt.* from(
               select * from emp order by sal desc
               ) tt where rownum<11) tt
    where rn >5;
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述

  • 相关阅读:
    Document
    Document
    Document
    css3 无缝轮播效果小demo(轮播效果/渐隐渐现效果)
    4.Redux (这篇文章需要修改)
    3.React-router/BrowserRouter/withRouter/Switch/history/exact/strict/Link/Redirect/PropTypes
    2.React数据传递 之☞ 父子之间数据传递 / React生命周期
    1.React (基础篇)
    13. Vuex ,一个专为 Vue.js 应用程序开发的状态管理模式
    12. vue 路由(vue-router)
  • 原文地址:https://www.cnblogs.com/zmystc/p/13495190.html
Copyright © 2011-2022 走看看