andy Space

博客园 首页 新随笔 联系 订阅 管理

/**********************************  数据分页显示存储过程      *****************************/
--DROP PROCEDURE proc_getPagingData

USE pet_db
GO

CREATE PROCEDURE proc_getPagingData
@tblName varchar(255)=view_vetInfo,     -- 表名
@strGetFields varchar(1000) = '*',  -- 需要返回的列
@fldName varchar(255)='',           -- 排序的字段名
@PageSize int = 13,                 -- 页尺寸--既页面显示多少条记录
@PageIndex int = 1,                 -- 页码
@doCount bit = 0,                   -- 返回记录总数, 非 0 值则返回
@OrderType bit = 0,                 -- 设置排序类型, 非 0 值则降序
@strWhere varchar(1500) = ''        -- 查询条件 (注意: 不要加 where)
AS

declare @strSQL varchar(5000)       -- 主语句
declare @strTmp varchar(110)        -- 临时变量
declare @strOrder varchar(400)      -- 排序类型

if @doCount != 0
 begin
 if @strWhere !=''
  set @strSQL = 'select count(*) as Total from [' + @tblName + '] where '+@strWhere
 else
  set @strSQL = 'select count(*) as Total from [' + @tblName + ']'
 end
--以上代码的意思是如果@doCount传递过来的不是0,就执行总数统计。以下的所有代码都是@doCount为0的情况:
else
 begin
 if @OrderType != 1 --如果@OrderType不是1,就执行降序!
  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

 if @PageIndex = 1 --如果是第一页就执行以上代码,这样会加快执行速度
  begin
  if @strWhere != ''
   set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from [' + @tblName + '] where ' + @strWhere + ' ' + @strOrder
  else
   set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from ['+ @tblName + '] '+ @strOrder
  end
 else
  begin --以下执行的SQL代码 
   if @strWhere != ''
 SET @strSQL = 'select top ' + str(@PageSize) + ' '+ @strGetFields +' from [' + @tblName + '] where ' + @fldName + ' not in (select top ' + str((@PageIndex-1) * @PageSize) + ' ' + @fldName + ' from '+@tblName+ ' '+ @strOrder + ' ) and '+ @strWhere + ' ' + @strOrder
   else
 SET @strSQL = 'select top ' + str(@PageSize) + ' '+ @strGetFields +' from [' + @tblName + '] where ' + @fldName + ' not in (select top ' + str((@PageIndex-1) * @PageSize) + ' ' + @fldName + ' from '+@tblName+' '+ @strOrder +' ) ' + @strOrder
   end

 end

EXEC (@strSQL)

GO

posted on 2006-12-15 23:39  andyliang  阅读(161)  评论(0)    收藏  举报