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

MySQL与Oracle中的基本分页

时间:2016-08-22 02:02:29      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

MySQL中的基本分页:

select

       ename

from 

     emp

where xxxxx

order by

   sal  desc

limit 

   (pageno-1)*pageSize,pageSize;

Oracle中的基本分页

 select tt.*

 from (

select t.*,rownum as  linenum

from 

(select  * from  tbl_role) t

where 

rownum <#{0}*#{1}

)tt

where 

linenum  >(#{0}-1)*#{1}

  

MySQL与Oracle中的基本分页

标签:

原文地址:http://www.cnblogs.com/KYKY22/p/5794091.html

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