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

不同数据库分页总结

时间:2014-12-22 18:05:52      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:数据库   oracle   mysql   

总结下主流的MYSQL,sqlSever 和oracle的数据库的分页代码,如下:

MySQL:select * from  TableName where …… limit start_th , count_num;  
SqlSever:select top count_num  from TableName where id not in (select top count_num from TableName  where ……);
Oracle:select t2.* from (select t1.* ,rownum rn from (select * from TabbleName where ……) t1 where rownum <=endline ) t2 where t2.rn>=start_line;
oracle 的条件筛选都放在最内层进行第一层筛选,剔除末尾的(第二层),剔除头部的(第三层)技术分享
供大家参考!

不同数据库分页总结

标签:数据库   oracle   mysql   

原文地址:http://blog.csdn.net/howardge/article/details/42081825

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