(转贴)高效的数据分页的存储过程

CREATE PROCEDURE pageTest  --用于翻页的测试
--需要把排序字段放在第一列

 (
  @FirstID nvarchar(20)=null,  --当前页面里的第一条记录的排序字段的值
  @LastID nvarchar(20)=null,  --当前页面里的最后一条记录的排序字段的值
  @isNext bit=null,    --true 1 :下一页;false 0:上一页
  @allCount int output,   --返回总记录数
  @pageSize int output,   --返回一页的记录数
  @CurPage int     --页号(第几页)0:第一页;-1最后一页。
  )

AS

if @CurPage=0
 begin
  --统计总记录数
  select @allCount=count(ProductId) from Product_test
  
  set @pageSize=10
  --返回第一页的数据
  select top 10
   ProductId,
   ProductName,
   Introduction  
   from Product_test order by ProductId
 end

else if @CurPage=-1

 select * from
  (select top 10 ProductId,
   ProductName,
   Introduction

  from Product_test order by ProductId desc ) as aa 
  order by ProductId
else

 begin
  if @isNext=1
   --翻到下一页
   select top 10 ProductId,
   ProductName,
   Introduction
  from Product_test where ProductId > @LastID order by ProductId
  
  
  else
   --翻到上一页
   select * from
    (select top 10 ProductId,
   ProductName,
   Introduction
  from Product_test where ProductId < @FirstID  order by ProductId desc) as bb order by ProductId
 end
 

百万数据翻页就像100条数据一样!

http://www.jyklzz.net/web/jyk/index.asp 这里有详细的说明

详细内容请见

http://community.csdn.net/Expert/topic/3592/3592434.xml?temp=.2419245
http://community.csdn.net/Expert/topic/3592/3592790.xml?temp=.7691156

发贴的时候还没有想到如何高效的实现指定页号的翻页,
现在补上一段,大家看一下这么翻页效率怎么样。

declare @ID int    --排序字段
declare @i int
declare @count int


set @i=0
set @count=0  --0:第二页 1:第三页 。。。

--由大到小排列
select top 10 @ID=ID from table  order by ID desc --一页10条记录


while @i< @count
begin
 select top 10 @ID=ID from table  where ID<@ID  order by ID desc
 set @i=@i+1

end

select top 10 *  from table  where ID<@ID  order by ID desc  --返回记录

posted on 2005-10-10 11:07  冷月孤峰  阅读(193)  评论(0)    收藏  举报