文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>动态的SQL分页

动态的SQL分页

时间:2010-10-14  来源:早念

alter procedure sp_aspnetpage
@curpage int, 
@tablename varchar(50),--输入参数
@count int output,--输出参数
@order varchar(10),
@key varchar(10),
@pagesize int=2,
@condition varchar(2000)='1=1'
as
begin
set nocount on
--设置开始行号
declare @start_row_num int

set @start_row_num=(@curpage-1)*@pagesize
--设置动态sql语句
declare @sql varchar(1000)

set @sql='select top '+cast(@pagesize as varchar(20))+'* from '+@tablename+' where '+@condition+' and '+@key+' not in (select top '+convert(varchar(20),@start_row_num)+' '+@key+' from '+@tablename+ ' where '+@condition+' order by '+@order+') order by '+@order
--获得总记录数
declare @countnum nvarchar(4000)

set @countnum='select @all=count(-1) from '+@tablename

exec sp_executesql @countnum,N'@all int output',@count output
--执行分页sql
print @sql
exec (@sql)
end

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载