码迷,mamicode.com
首页 > 其他好文 > 详细

通用分页存储过程

时间:2018-07-30 01:10:14      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:通用   ges   取数   表名   存储   int   exists   sys   create   

if exists(select * from sys.objects where name=‘存储过程名称‘)
drop proc 存储过程名称
go
CREATE proc 存储过程名称
@tableName varchar(8000),          --表名、视图名
@indexCol varchar(50) = ‘a.id‘,      --标识列名(如:比如主键、标识,推荐使用索引列)
@pageSize int = 10,                --页面大小
@pageIndex int = 0,                --当前页
@orderCol varchar(100) = ‘a.id desc‘,--排序 (如:id)
@where varchar(max) = ‘‘,         --条件
@columns varchar(500) = ‘*‘        --要显示的列
as
declare @sql varchar(max)
declare @sql2 varchar(max)
declare @where2 varchar(max)

if @where <> ‘‘
begin
    select @where2 = ‘ And ‘ + @where
    select @where = ‘ Where ‘ + @where
end
else
    select @where2 = ‘‘


select @sql = ‘Select Top ‘ + Convert(varchar(10),@pageSize) + ‘ ‘ + @columns + ‘ From ‘ + @tableName
select @sql2 = @sql + @where
select @sql =  @sql + ‘ Where ‘ + ‘(‘ + @indexCol + ‘ Not In (Select Top ‘ + Convert(varchar(10),  ((@pageIndex-1)*@pageSize)) + ‘ ‘ + @indexCol + ‘ From ‘ + @tableName + @where +  ‘ Order by ‘+ @orderCol +‘))‘
select @sql = @sql + @where2
select @sql = @sql + ‘ Order by ‘ + @orderCol
--获取数据集
exec (@sql)
PRINT @sql
select @sql2 = Replace(@sql2,‘Top ‘ + Convert(varchar(10), @pageSize) + ‘ ‘ + @columns, ‘count(1)‘)
--获取总数据条数
exec(@sql2)

GO

通用分页存储过程

标签:通用   ges   取数   表名   存储   int   exists   sys   create   

原文地址:https://www.cnblogs.com/zcc0912/p/9388347.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!