当前位置:Gxlcms > mysql > Mysql系列(十三)分页查询语句

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

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

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.gxlcms.com)!

人气教程排行