随机排序分页处理示例

/*--原帖地址:
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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值