在oracle中怎么查询排序在前十的语句

如题所述

第1个回答  推荐于2016-06-02
select * from (select rownum num, a.* from table1 order by 排序关键字)
where num<11本回答被提问者采纳
第2个回答  推荐于2016-05-17
select * from table where 1=1 order by id desc number 10
第3个回答  2011-05-08
select * from table where rownum < 11
第4个回答  2011-05-08
select * from XX where rownumber<=10;
相似回答