码迷,mamicode.com
首页 > 其他好文 > 详细

order by 容易出现的bug记录

时间:2016-09-01 11:02:45      阅读:112      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!