Create PROCEDURE [dbo].[UP_GetRecordByPages]
@tblName varchar(255), -- 表名
@fldName varchar(255), -- 主键字段名
@PageSize int = 10, -- 页尺寸
@PageIndex int = 1, -- 页码
@IsReCount bit = 0, -- 返回记录总数, 非 0 值则返回
@OrderType bit = 0, -- 设置排序类型, 非 0 值则降序
@strWhere varchar(1000) = '' -- 查询条件 (注意: 不要加 where)
AS
declare @strSQL varchar(6000) -- 主语句
declare @strTmp varchar(100) -- 临时变量(查询条件过长时可能会出错,可修改100为1000)
declare @strOrder varchar(400) -- 排序类型
if @OrderType != 0
begin
set @strTmp = '<(select min'
set @strOrder = ' order by [' + @fldName +'] desc'
end
else
begin
set @strTmp = '>(select max'
set @strOrder = ' order by [' + @fldName +'] asc'
end
set @strSQL = 'select top ' + str(@PageSize) + ' * from ['
+ @tblName + '] where [' + @fldName + ']' + @strTmp + '(['
+ @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['
+ @fldName + '] from [' + @tblName + ']' + @strOrder + ') as tblTmp)'
+ @strOrder
if @strWhere != ''
set @strSQL = 'select top ' + str(@PageSize) + ' * from ['
+ @tblName + '] where [' + @fldName + ']' + @strTmp + '(['
+ @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['
+ @fldName + '] from [' + @tblName + '] where ' + @strWhere + ' '
+ @strOrder + ') as tblTmp) and ' + @strWhere + ' ' + @strOrder
if @PageIndex = 1
begin
set @strTmp =''
if @strWhere != ''
set @strTmp = ' where ' + @strWhere
set @strSQL = 'select top ' + str(@PageSize) + ' * from ['
+ @tblName + ']' + @strTmp + ' ' + @strOrder
end
if @IsReCount != 0
set @strSQL = 'select count(*) as Total from [' + @tblName + ']'+' where ' + @strWhereexec (@strSQL)
print @strSQL
----------------------------------------------------------------------------------------exec UP_GetRecordByPages 'ExamineRecord','ExamId',2,2,0,0,'1=1 and ExamStatus=1' exec UP_GetRecordByPages 'Table_test','AID',2,1,0,0, '1=1 and ID=1 and TM=C'这里 会提示消息 207,级别 16,状态 1,第 1 行
列名 'C' 无效。exec UP_GetRecordByPages 'Table_test','AID',2,1,0,0, '1=1 and ID=1 and TM="C"'exec UP_GetRecordByPages 'Table_test','AID',2,1,0,0, '1=1 and ID=1 and TM=‘C’'消息 102,级别 15,状态 1,第 2 行
'C' 附近有语法错误。只能这样
exec UP_GetRecordByPages 'Table_test','AID',2,1,0,0, '1=1 and ID=1 and TM=''C'''
但 我要用到程序里边 就不能  把这样  '1=1 and ID=1 and TM=''C'' ' 传值 进去 '1=1 and ID=1 and TM='C' '要怎么可以改下