随机排序分页处理示例

来源:互联网 发布:同一ip开多个淘宝店铺 编辑:程序博客网 时间:2024/04/29 07:13

/*--原帖地址:
http://community.csdn.net/Expert/topic/3845/3845647.xml?temp=.7272455
--*/

/*--处理要求

用如下语句可以实现随机排序:
select * from xiaofei where status=1 order by newid()

这样的话每次用户刷新页面排序就会变.
现在我想做成不同用户进来页面看到的排序都不一样,但是同一个用户在一段时间内每次刷新页面看到的排序都是一样的
--*/
go

/*--处理分析

借助临时表缓存排序结果,再结合原表主键查询数据就可以了
--*/

--大致的处理存储过程
create proc p_qry
@username sysname,  --用户名,根据用户名来设定排序处理的临时表
@pagesize int=5,    --每页大小
@currentpage int=1  --当前页,>=1表示正常查询,<1表示重建临时表
as
set nocount on

declare @tbname sysname
set @tbname=quotename('##'+@username)

--如果临时表不存在,或者@currentpage<1,则生成处理临时表
if object_id(@tbname) is null or isnull(@currentpage,0)<1
begin
 --如果临时表已经存在,先删除它
 if object_id(@tbname) is not null exec('drop table '+@tbname)

 --假设表的主键字段名为: id
 exec('select nnid=identity(bigint,0,1),* from(
  select top 100 percent id from xiaofei
  where status=1
  order by newid())a')
 set @currentpage=1
end

--根据需要查询指定页的数据
declare @s nvarchar(4000)
set @s='select a.* from xiaofei a,'+@tbname+' b
where a.id=b.id
and b.nnid between (@currentpage-1)*@pagesize+1
and @currentpage*@pagesize'
exec sp_executesql @s,N'@currentpage int,@pagesize int',@currentpage,@pagesize

原创粉丝点击