/*SP6*/ CREATE PROCEDURE dbo.getUserList @iPageCount int OUTPUT, --总页数 @iPage int, --当前页号 @iPageSize int --每页记录数 as set nocount on begin --创建临时表 create table #t (ID int IDENTITY, --自增字段 userid int, username varchar(40)) --向临时表中写入数据 insert into #t select userid,username from dbo.[UserInfo] order by userid --取得记录总数 declare @iRecordCount int set @iRecordCount = @@rowcount --确定总页数 IF @iRecordCount%@iPageSize=0 SET @iPageCount=CEILING(@iRecordCount/@iPageSize) ELSE SET @iPageCount=CEILING(@iRecordCount/@iPageSize)+1 --若请求的页号大于总页数,则显示最后一页 IF @iPage > @iPageCount SELECT @iPage = @iPageCount --确定当前页的始末记录 DECLARE @iStart int --start record DECLARE @iEnd int --end record SELECT @iStart = (@iPage - 1) * @iPageSize SELECT @iEnd = @iStart + @iPageSize + 1 --取当前页记录 select * from #t where ID>@iStart and ID<@iEnd --删除临时表 DROP TABLE #t --返回记录总数 return @iRecordCount end go |