码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 中sql语句中的取前n条数据

时间:2018-03-27 02:01:51      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:tab   HERE   div   员工   数据   注意   des   sele   ora   

取得薪水最高的前五名员工
 
sql:
select * from (
select empno,ename,sal from emp order by sal desc)
where
rownum< 6;
 
注意:
select * from (
table )
where
rownum< 6;
取前n条数据,oracle中用rownum < m;
1:其中m-1 等于要取的条数
2:rownum 只能有 < ,<= ,没有 >
3: 如m为6,则取得是前5条数据。
 
 

Oracle 中sql语句中的取前n条数据

标签:tab   HERE   div   员工   数据   注意   des   sele   ora   

原文地址:https://www.cnblogs.com/2016-cxp/p/8654832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!