您的位置:首页 > 数据库 > SQL

还是分页的存储过程!

2005-12-13 14:56 513 查看
CREATE PROCEDURE page180w
@tblName      varchar(255)='CompanyTable180',-- 表名
@strGetFields varchar(1000)='coname,id,sxid,loginname',   -- 需要返回的列
@fldName      varchar(255)='sxid',         -- 排序的字段名
@PageSize     int='10',                      -- 页尺寸
@PageIndex    int='200',                      -- 页码
@strWhere     varchar(1500)='公司',     -- 查询条件 (注意: 不要加 where)
@doCount      bit=0                        --总数
AS
declare @strSQL     varchar(5000)       -- 主语句
declare @strTmp     varchar(110)        -- 临时变量
declare @strOrder   varchar(400)        -- 排序类型
set @strTmp = '>(select max'
set @strOrder = ' order by [' + @fldName +'] asc'
if @doCount != 0
begin   
    set @strSQL = 'select count(*) as Total from [' + @tblName + ']  where CoName like ''%'+@strWhere+'%'' '
end  --以上代码的意思是如果@doCount传递过来的不是0,就执行总数统计。以下的所有代码都是@doCount为0的情况
else
begin
if @PageIndex = 1
begin
  if @strWhere != ''  
  set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from [' + @tblName + '] where CoName like ''%'+@strWhere+'%'' ' + @strOrder
  else
  set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from ['+ @tblName + '] '+ @strOrder
--如果是第一页就执行以上代码,这样会加快执行速度
end
else
begin--以下代码赋予了@strSQL以真正执行的SQL代码
set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' 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) +' '+@strGetFields+ '  from ['
        + @tblName + '] where [' + @fldName + ']' + @strTmp + '(['
        + @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['
        + @fldName + '] from [' + @tblName + '] where CoName like ''%'+@strWhere+'%'' '
        + @strOrder + ') as tblTmp) and CoName like ''%'+@strWhere+'%'' ' + @strOrder
end
end  
exec (@strSQL)
GO
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  存储 sql go