本文原创于[url]http://hi.baidu.com/kaedemaple/blog/item/b430e72fbfc5763c1e308946.html[/url]
排序翻页的程序“BUG”
用hibernate查询的结果集进行分页显示,翻页显示中有少量记录是重复的。检查sql发现写法没什么问题
也就是oracle内部对结果集进行了排序,排序结果并非是你设置了order by关键字所预想得到的,比如你第2页有4条记录,翻到第3页,这些记录依然出现,但语句本身并没有任何问题
select * from nirvana.sfa_opportunity where status = 'selected' and sales_id ='xuyi'
order by repeat_flag asc
) t1 where rownum < 121 )
where (countrownum >= 101 )
select countrownum, company_name, member_id from ( select rownum countrownum , t1.* from (
select * from nirvana.sfa_opportunity where status = 'selected' and sales_id ='xuyi'
order by repeat_flag asc
) t1 where rownum < 101 )
where (countrownum >= 81 )
这两个查询中,发现了有重复记录
经过仔细检查,发现数据中repeat_flag基本都是重复的,这是不是导致排序后顺序不一样呢?结果测试后果然是这样,当rownum选择不同的情况下,内层排序后顺序可能不一样,也就是说,估计是和oracle的排序的实现细节有关系,比如内存分配的不一样就可能导致相同字段值排序后记录顺序的不一样。为此决定在order by repeat_flag 后面增加其他不同值的字段,在这里选择了唯一的ID号,从而解决了这个问题。
select countrownum, company_name, member_id from ( select rownum countrownum , t1.* from (
select * from nirvana.sfa_opportunity where status = 'selected' and sales_id ='xuyi'
order by repeat_flag asc ,ID
) t1 where rownum < 101 )
where (countrownum >= 81 )
排序翻页的程序“BUG”
用hibernate查询的结果集进行分页显示,翻页显示中有少量记录是重复的。检查sql发现写法没什么问题
也就是oracle内部对结果集进行了排序,排序结果并非是你设置了order by关键字所预想得到的,比如你第2页有4条记录,翻到第3页,这些记录依然出现,但语句本身并没有任何问题
select * from nirvana.sfa_opportunity where status = 'selected' and sales_id ='xuyi'
order by repeat_flag asc
) t1 where rownum < 121 )
where (countrownum >= 101 )
select countrownum, company_name, member_id from ( select rownum countrownum , t1.* from (
select * from nirvana.sfa_opportunity where status = 'selected' and sales_id ='xuyi'
order by repeat_flag asc
) t1 where rownum < 101 )
where (countrownum >= 81 )
这两个查询中,发现了有重复记录
经过仔细检查,发现数据中repeat_flag基本都是重复的,这是不是导致排序后顺序不一样呢?结果测试后果然是这样,当rownum选择不同的情况下,内层排序后顺序可能不一样,也就是说,估计是和oracle的排序的实现细节有关系,比如内存分配的不一样就可能导致相同字段值排序后记录顺序的不一样。为此决定在order by repeat_flag 后面增加其他不同值的字段,在这里选择了唯一的ID号,从而解决了这个问题。
select countrownum, company_name, member_id from ( select rownum countrownum , t1.* from (
select * from nirvana.sfa_opportunity where status = 'selected' and sales_id ='xuyi'
order by repeat_flag asc ,ID
) t1 where rownum < 101 )
where (countrownum >= 81 )