Maison  >  Article  >  base de données  >  ORACLE 分页SQL

ORACLE 分页SQL

WBOY
WBOYoriginal
2016-06-07 15:21:001064parcourir

1、使用rowid、rownum位列分页 select * from table1 where rowid in ( select rid from ( select rid,rownum rn from ( select rowid rid from table1 order by fid desc ) where rownum4 ) where rn=1 ) order by fid; 2、使用rownum伪列进行分页 select *

1、使用rowid、rownum位列分页

select * from table1 where rowid in (select rid from (select rid,rownum rn from (select rowid rid from table1 order by fid desc) where rownum) where rn>=1) order by fid;

2、使用rownum伪列进行分页

select * from (select t1.*,rownum rn from (select * from table1 order by fid) t1 where rownum=1 order by fid

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn