当前位置:Gxlcms > mysql > Oracle基本查询查看排名

Oracle基本查询查看排名

时间:2021-07-01 10:21:17 帮助过:104人阅读

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

人气教程排行