首页 > 其他 > 详细

order by 容易出现的bug记录

时间:2016-09-01 11:01:13      阅读:120      评论:0      收藏:0      [点我收藏+]

 

  1. 写分页查询时遇到一个问题:

在order by create_time 的时候,假设所有数据的create_time 值相同,那么

使用:select * from ( selelct s.*,rownum rn from t_student s where rownum <= 10 order by s.create_time) a where a.rn >5 

和  select * from ( selelct s.*,rownum rn from t_student s where rownum <= 15 order by s.create_time) a where a.rn >10 

可能查到相同的数据。

 

order by 使用时需要注意相同值排序情况,可以添加id排序!

select * from ( selelct s.*,rownum rn from t_student s where rownum <= 15 order by s.create_time,s.id) a where a.rn >10

order by 容易出现的bug记录

原文:http://www.cnblogs.com/yingsong/p/5828721.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!