Oracle 基本查询 查看排名

WBOY
發布: 2016-06-07 17:13:10
原創
1396 人瀏覽過

1- 求排名前6-10 的员工 方法一: select employee, salary from ( select employee, salary, row_number() over (order by

1- 求排名前6-10 的员工

方法一:

select employee, salary
  from (
    select employee, salary, row_number() over (order by salary desc) r
      from salary_table
  )
where r between 6 and 10;

======================================

方法二:
select employee, salary
  from (
    select employee, salary, rank() over (order by salary desc) r
      from salary_table
  )
where r between 6 and 10;

更多Oracle相关信息见Oracle 专题页面 ?tid=12

linux

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板