码迷,mamicode.com
首页 > 数据库 > 详细

【SQL Server】Sql分页(自用)

时间:2014-09-30 13:58:09      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   2014   c   on   

下面是存储过程的创建,用的时候调用就行了

/****** Object: StoredProcedure [dbo].[sq_paging] Script Date: 09/10/2014 09:57:54 ******/

SET ANSI_NULLS ON

GO


SET QUOTED_IDENTIFIER ON

GO



CREATE proc [dbo].[Yc_PageSelect]

@tbName varchar(255), --表名

@tbFields varchar(1000), --返回字段

@PageSize int, --页尺寸

@PageIndex int, --页码

@strWhere varchar(1000), --查询条件

@StrOrder varchar(255), --排序条件

@Key varchar(20) --排序字段

as

declare @strSql varchar(5000) --主语句

declare @strSqlCount nvarchar(500)--查询记录总数主语句


--------------总记录数---------------

if @strWhere !=‘‘

begin

set @strSqlCount=Select COUNT(*) as TotalCout from  + @tbName +  where + @strWhere

end

else

begin

set @strSqlCount=Select COUNT(*) as TotalCout from  + @tbName

end

--------------分页------------

if @PageIndex <= 1

begin

set

@strSql=select top +str(@PageSize)+ +@tbFields+from  + @tbName

+  where  + @strWhere +  + @strOrder

end

else

begin

set @strSql=select top +str(@PageSize)+ +@tbFields+from  + @tbName +  where  + @strWhere

+ AND +@Key + > (select MAX(+@Key

+) from ( select top +str((@PageIndex-1)*@PageSize)+ +@Key + from  + @tbName +  where  + @strWhere + +@strOrder + )a) 

+ @strOrder

end


exec (@strSqlCount)

exec(@strSql)


GO

 

【SQL Server】Sql分页(自用)

标签:style   blog   color   ar   sp   div   2014   c   on   

原文地址:http://www.cnblogs.com/yc-755909659/p/4001712.html

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