Maison  >  Article  >  base de données  >  Mysql系列(十三)分页查询语句

Mysql系列(十三)分页查询语句

黄舟
黄舟original
2017-01-22 17:04:37893parcourir

Mysql系列(十三)分页查询语句

MySql

 select tablename.*  from  tablename limit firstIndex,pageSize;
          firstIndex -------->开始索引
          pageSize--------->页大小

Oracle

select * from (
                           select a.*,ROWNUM rn from tablename a where ROWNUM<=(firstIndex+pageSize)
                          ) where rn>firstIndex;

 

     2.        

 select * from(select * from(select p.*,ROWNUM rn from tablename )p  where p.rownumber>firstIndex)  where rownum>pageSize;

以上就是Mysql系列(十三)分页查询语句的内容,更多相关内容请关注PHP中文网(www.php.cn)!

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