/****** Object:  StoredProcedure [dbo].[sys_Page_v3]    Script Date: 08/13/2014 09:32:28 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO --/*-----存储过程 分页处理 孙伟 2005-03-28创建 -------*/
--/*-----存储过程 分页处理 浪尘 2008-9-1修改----------*/
--/*----- 对数据进行了2分处理使查询前半部分数据与查询后半部分数据性能相同 -------*/ alter PROCEDURE [dbo].[sys_Page_v3]
(
@tblName nvarchar(200), ----要显示的表或多个表的连接
@fldName nvarchar(500) = *, ----要显示的字段列表
@pageSize int = 10, ----每页显示的记录个数
@page int = 1, ----要显示那一页的记录
@fldSort nvarchar(200) = null, ----排序字段列表或条件
@Sort bit = 0, ----排序方法,0为升序,1为降序(如果是多字段排列Sort指代最后一个排序字段的排列顺序(最后一个排序字段不加排序标记)--程序传参如: SortA Asc,SortB Desc,SortC )
@strCondition nvarchar(1000) = null, ----查询条件,不需where
@ID nvarchar(150), ----主表的主键
@Dist bit = 0, ----是否添加查询字段的 DISTINCT 默认0不添加/1添加
@pageCount int = 1 output, ----查询结果分页后的总页数
@Counts int = 1 output ----查询到的记录数
)
AS
SET NOCOUNT ON
Declare @sqlTmp nvarchar(1000) ----存放动态生成的SQL语句
Declare @strTmp nvarchar(1000) ----存放取得查询结果总数的查询语句
Declare @strID nvarchar(1000) ----存放取得查询开头或结尾ID的查询语句 Declare @strSortType nvarchar(10) ----数据排序规则A
Declare @strFSortType nvarchar(10) ----数据排序规则B Declare @SqlSelect nvarchar(50) ----对含有DISTINCT的查询进行SQL构造
Declare @SqlCounts nvarchar(50) ----对含有DISTINCT的总数查询进行SQL构造 declare @timediff datetime --耗时测试时间差
select @timediff=getdate() if @Dist = 0
begin
set @SqlSelect = select
set @SqlCounts = Count(*)
end
else
begin
set @SqlSelect = select distinct
set @SqlCounts = Count(DISTINCT +@ID+)
end if @Sort=0
begin
set @strFSortType= ASC
set @strSortType= DESC
end
else
begin
set @strFSortType= DESC
set @strSortType= ASC
end --------生成查询语句--------
--此处@strTmp为取得查询结果数量的语句
if @strCondition is null or @strCondition= --没有设置显示条件
begin
set @sqlTmp = @fldName + From @tblName
set @strTmp = @SqlSelect+ @Counts=+@SqlCounts+ FROM +@tblName
set @strID = From @tblName
end
else
begin
set @sqlTmp = + @fldName + From @tblName + where @strCondition
set @strTmp = @SqlSelect+ @Counts=+@SqlCounts+ FROM +@tblName + where 1=1 @strCondition
set @strID = From @tblName + where @strCondition
end ----取得查询结果总数量-----
exec sp_executesql @strTmp,N@Counts int out ,@Counts out
declare @tmpCounts int
if @Counts = 0
set @tmpCounts = 1
else
set @tmpCounts = @Counts --取得分页总数
set @pageCount=(@tmpCounts+@pageSize-1)/@pageSize /**//**//**//**当前页大于总页数 取最后一页**/
if @page>@pageCount
set @page=@pageCount --/*-----数据分页2分处理-------*/
declare @pageIndex int --总数/页大小
declare @lastcount int --总数%页大小 set @pageIndex = @tmpCounts/@pageSize
set @lastcount = @tmpCounts%@pageSize
if @lastcount > 0
set @pageIndex = @pageIndex + 1
else
set @lastcount = @pagesize --//***显示分页
if @strCondition is null or @strCondition= --没有设置显示条件
begin
if @pageIndex<2 or @page<=@pageIndex / 2 + @pageIndex % 2 --前半部分数据处理
begin
if @page=1
set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ order by + @fldSort + + @strFSortType
else
begin
if @Sort=1
begin
set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ <(select min(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
+ order by + @ID + + @strFSortType+) AS TBMinID)
+ order by + @fldSort + + @strFSortType
end
else
begin
set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ >(select max(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
+ order by + @ID + + @strFSortType+) AS TBMinID)
+ order by + @fldSort + + @strFSortType
end
end
end
else
begin
set @page = @pageIndex-@page+1 --后半部分数据处理
if @page <= 1 --最后一页数据显示
set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@lastcount as VARCHAR(6))+ + @fldName+ from +@tblName
+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
else
if @Sort=1
begin
set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ >(select max(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
+ order by + @ID + + @strSortType+) AS TBMaxID)
+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
end
else
begin
set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ <(select min(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
+ order by + @ID + + @strSortType+) AS TBMaxID)
+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
end
end
end else --有查询条件
begin
if @pageIndex<2 or @page<=@pageIndex / 2 + @pageIndex % 2 --前半部分数据处理
begin
if @page=1
set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where 1=1 @strCondition + order by + @fldSort + + @strFSortType
else if(@Sort=1)
begin
set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ <(select min(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
+ where 1=1 @strCondition + order by + @ID + + @strFSortType+) AS TBMinID)
+ + @strCondition + order by + @fldSort + + @strFSortType
end
else
begin
set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ >(select max(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
+ where 1=1 @strCondition + order by + @ID + + @strFSortType+) AS TBMinID)
+ + @strCondition + order by + @fldSort + + @strFSortType
end
end
else
begin
set @page = @pageIndex-@page+1 --后半部分数据处理
if @page <= 1 --最后一页数据显示
set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@lastcount as VARCHAR(6))+ + @fldName+ from +@tblName
+ where 1=1 + @strCondition + order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
else if(@Sort=1)
set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ >(select max(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
+ where 1=1 + @strCondition + order by + @ID + + @strSortType+) AS TBMaxID)
+ + @strCondition+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
else
set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
+ where +@ID+ <(select min(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
+ where 1=1 + @strCondition + order by + @ID + + @strSortType+) AS TBMaxID)
+ + @strCondition+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
end
end ------返回查询结果-----
exec sp_executesql @strTmp
--select datediff(ms,@timediff,getdate()) as 耗时
--print @strTmp
SET NOCOUNT OFF

  

修改后的SQL分页存储过程,利用2分法,支持排序的更多相关文章

  1. [转]关于SQL分页存储过程的分析

    [转]关于SQL分页存储过程的分析 建立一个 Web 应用,分页浏览功能必不可少.这个问题是数据库处理中十分常见的问题.经典的数据分页方法是:ADO 纪录集分页法,也就是利用ADO自带的分页功能(利用 ...

  2. 完整SQL分页存储过程(支持多表联接)

    http://www.cnblogs.com/andiki/archive/2009/03/24/1420289.html Code/********************************* ...

  3. Delphi调用SQL分页存储过程实例

    Delphi调用SQL分页存储过程实例 (-- ::)转载▼ 标签: it 分类: Delphi相关 //-----下面是一个支持任意表的 SQL SERVER2000分页存储过程 //----分页存 ...

  4. 关于SQL分页存储过程的分析

    建 立一个 Web 应用,分页浏览功能必不可少.这个问题是数据库处理中十分常见的问题.经典的数据分页方法是:ADO 纪录集分页法,也就是利用ADO自带的分页功能(利用游标)来实现分页.但这种分页方法仅 ...

  5. 真正通用的SQL分页存储过程

    关于SQL分页的问题,网上找到的一些SQL其实不能真正做到通用,他们主要是以自增长ID做为前提的.但在实际使用中,很多表不是自增长的,而且主键也不止一个字段,其实我们稍做改进就可以达到通用.这里还增加 ...

  6. SQL 单表分页存储过程和单表多字段排序和任意字段分页存储过程

      第一种:单表多字段排序分页存储过程       --支持单表多字段查询,多字段排序 create PROCEDURE [dbo].[UP_GetByPageFiledOrder] ( ), --表 ...

  7. SQL - 分页存储过程

    http://www.jb51.net/article/71193.htm http://www.webdiyer.com/utils/spgenerator/ create PROCEDURE [d ...

  8. SqlServer分页存储过程(多表查询,多条件排序),Repeater控件呈现数据以及分页

        存储过程(Stored Procedure)是在大型数据库系统中,一组为了完成特定功能的SQL 语句集,存储在数据库中,经过第一次编译后再次调用不需要再次编译,用户通过指定存储过程的名字并给出 ...

  9. sql分页存储过程比较

    一,先创建一百万条数据 drop table #tmp create table #tmp ( id ,) primary key, name ) ) declare @i int begin ins ...

随机推荐

  1. Remove Duplicates from Sorted List(链表)

    Given a sorted linked list, delete all duplicates such that each element appear only once. For examp ...

  2. isIsomorphic

    超时版: /* Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if t ...

  3. 百度之星IP聚合(水题map&字符处理)

    虽然题目停水的,但是好像字符处理运用的还比较合适 Problem Description 当今世界,网络已经无处不在了,小度熊由于犯了错误,当上了度度公司的网络管理员,他手上有大量的 IP列表,小度熊 ...

  4. xcode C++一些简单设置

    下面是一个要用到mysql库的C++程序设置: 添加用户头文件: 双击项目-Build Settings-Search Paths: Library Search Paths: /usr/local/ ...

  5. ASP.Net软件工程师基础(一)

    本人目前是一名有1年左右ASP.Net开发经验的的软件开发工程师,目前公司用的是MVC+EF+...做的网站.写这套总结性系列文章的目的有两个:一是帮助自己总结一下自己到底有多少斤两,而不是一味的学新 ...

  6. Skill

    Skill Yasser is an Egyptian coach; he will be organizing a training camp in Jordan. At the end of ca ...

  7. HDU2176尼姆博弈

    HDU2176 http://acm.hdu.edu.cn/showproblem.php?pid=2176 假设有3个数,a[0],a[1],a[2];那么ans=a[0]^a[1]^a[2];若a ...

  8. 在linux中安装和卸载mysql

    [安装] 已经获取到linux版本的mysql安装包,包括mysql的server(服务端)和client(客户端)的安装包,假设安装包为: MySQL-server-5.0.22-0.i386.rp ...

  9. JMeter的定时器

    JMeter的十种定时器 先明确一些概念:1)定时器是在每个sampler(采样器)之前执行的,而不是之后,不管这个定时器的位置放在sampler之后,还是之前.2)定时器是有作用域的:当执行一个sa ...

  10. 游戏服务器生成全局唯一ID的几种方法

    在服务器系统开发时,为了适应数据大并发的请求,我们往往需要对数据进行异步存储,特别是在做分布式系统时,这个时候就不能等待插入数据库返回了取自动id了,而是需要在插入数据库之前生成一个全局的唯一id,使 ...