1. /****** Object: StoredProcedure [dbo].[sys_Page_v3] Script Date: 08/13/2014 09:32:28 ******/
  2. SET ANSI_NULLS ON
  3. GO
  4. SET QUOTED_IDENTIFIER ON
  5. GO
  6.  
  7. --/*-----存储过程 分页处理 孙伟 2005-03-28创建 -------*/
  8. --/*-----存储过程 分页处理 浪尘 2008-9-1修改----------*/
  9. --/*----- 对数据进行了2分处理使查询前半部分数据与查询后半部分数据性能相同 -------*/
  10.  
  11. alter PROCEDURE [dbo].[sys_Page_v3]
  12. (
  13. @tblName nvarchar(200), ----要显示的表或多个表的连接
  14. @fldName nvarchar(500) = *, ----要显示的字段列表
  15. @pageSize int = 10, ----每页显示的记录个数
  16. @page int = 1, ----要显示那一页的记录
  17. @fldSort nvarchar(200) = null, ----排序字段列表或条件
  18. @Sort bit = 0, ----排序方法,0为升序,1为降序(如果是多字段排列Sort指代最后一个排序字段的排列顺序(最后一个排序字段不加排序标记)--程序传参如: SortA Asc,SortB Desc,SortC )
  19. @strCondition nvarchar(1000) = null, ----查询条件,不需where
  20. @ID nvarchar(150), ----主表的主键
  21. @Dist bit = 0, ----是否添加查询字段的 DISTINCT 默认0不添加/1添加
  22. @pageCount int = 1 output, ----查询结果分页后的总页数
  23. @Counts int = 1 output ----查询到的记录数
  24. )
  25. AS
  26. SET NOCOUNT ON
  27. Declare @sqlTmp nvarchar(1000) ----存放动态生成的SQL语句
  28. Declare @strTmp nvarchar(1000) ----存放取得查询结果总数的查询语句
  29. Declare @strID nvarchar(1000) ----存放取得查询开头或结尾ID的查询语句
  30.  
  31. Declare @strSortType nvarchar(10) ----数据排序规则A
  32. Declare @strFSortType nvarchar(10) ----数据排序规则B
  33.  
  34. Declare @SqlSelect nvarchar(50) ----对含有DISTINCT的查询进行SQL构造
  35. Declare @SqlCounts nvarchar(50) ----对含有DISTINCT的总数查询进行SQL构造
  36.  
  37. declare @timediff datetime --耗时测试时间差
  38. select @timediff=getdate()
  39.  
  40. if @Dist = 0
  41. begin
  42. set @SqlSelect = select
  43. set @SqlCounts = Count(*)
  44. end
  45. else
  46. begin
  47. set @SqlSelect = select distinct
  48. set @SqlCounts = Count(DISTINCT +@ID+)
  49. end
  50.  
  51. if @Sort=0
  52. begin
  53. set @strFSortType= ASC
  54. set @strSortType= DESC
  55. end
  56. else
  57. begin
  58. set @strFSortType= DESC
  59. set @strSortType= ASC
  60. end
  61.  
  62. --------生成查询语句--------
  63. --此处@strTmp为取得查询结果数量的语句
  64. if @strCondition is null or @strCondition= --没有设置显示条件
  65. begin
  66. set @sqlTmp = @fldName + From @tblName
  67. set @strTmp = @SqlSelect+ @Counts=+@SqlCounts+ FROM +@tblName
  68. set @strID = From @tblName
  69. end
  70. else
  71. begin
  72. set @sqlTmp = + @fldName + From @tblName + where @strCondition
  73. set @strTmp = @SqlSelect+ @Counts=+@SqlCounts+ FROM +@tblName + where 1=1 @strCondition
  74. set @strID = From @tblName + where @strCondition
  75. end
  76.  
  77. ----取得查询结果总数量-----
  78. exec sp_executesql @strTmp,N@Counts int out ,@Counts out
  79. declare @tmpCounts int
  80. if @Counts = 0
  81. set @tmpCounts = 1
  82. else
  83. set @tmpCounts = @Counts
  84.  
  85. --取得分页总数
  86. set @pageCount=(@tmpCounts+@pageSize-1)/@pageSize
  87.  
  88. /**//**//**//**当前页大于总页数 取最后一页**/
  89. if @page>@pageCount
  90. set @page=@pageCount
  91.  
  92. --/*-----数据分页2分处理-------*/
  93. declare @pageIndex int --总数/页大小
  94. declare @lastcount int --总数%页大小
  95.  
  96. set @pageIndex = @tmpCounts/@pageSize
  97. set @lastcount = @tmpCounts%@pageSize
  98. if @lastcount > 0
  99. set @pageIndex = @pageIndex + 1
  100. else
  101. set @lastcount = @pagesize
  102.  
  103. --//***显示分页
  104. if @strCondition is null or @strCondition= --没有设置显示条件
  105. begin
  106. if @pageIndex<2 or @page<=@pageIndex / 2 + @pageIndex % 2 --前半部分数据处理
  107. begin
  108. if @page=1
  109. set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  110. + order by + @fldSort + + @strFSortType
  111. else
  112. begin
  113. if @Sort=1
  114. begin
  115. set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  116. + where +@ID+ <(select min(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
  117. + order by + @ID + + @strFSortType+) AS TBMinID)
  118. + order by + @fldSort + + @strFSortType
  119. end
  120. else
  121. begin
  122. set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  123. + where +@ID+ >(select max(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
  124. + order by + @ID + + @strFSortType+) AS TBMinID)
  125. + order by + @fldSort + + @strFSortType
  126. end
  127. end
  128. end
  129. else
  130. begin
  131. set @page = @pageIndex-@page+1 --后半部分数据处理
  132. if @page <= 1 --最后一页数据显示
  133. set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@lastcount as VARCHAR(6))+ + @fldName+ from +@tblName
  134. + order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
  135. else
  136. if @Sort=1
  137. begin
  138. set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  139. + where +@ID+ >(select max(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
  140. + order by + @ID + + @strSortType+) AS TBMaxID)
  141. + order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
  142. end
  143. else
  144. begin
  145. set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  146. + where +@ID+ <(select min(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
  147. + order by + @ID + + @strSortType+) AS TBMaxID)
  148. + order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
  149. end
  150. end
  151. end
  152.  
  153. else --有查询条件
  154. begin
  155. if @pageIndex<2 or @page<=@pageIndex / 2 + @pageIndex % 2 --前半部分数据处理
  156. begin
  157. if @page=1
  158. set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  159. + where 1=1 @strCondition + order by + @fldSort + + @strFSortType
  160. else if(@Sort=1)
  161. begin
  162. set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  163. + where +@ID+ <(select min(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
  164. + where 1=1 @strCondition + order by + @ID + + @strFSortType+) AS TBMinID)
  165. + + @strCondition + order by + @fldSort + + @strFSortType
  166. end
  167. else
  168. begin
  169. set @strTmp=@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  170. + where +@ID+ >(select max(+ @ID +) from (+ @SqlSelect+ top + CAST(@pageSize*(@page-1) as Varchar(20)) + + @ID + from +@tblName
  171. + where 1=1 @strCondition + order by + @ID + + @strFSortType+) AS TBMinID)
  172. + + @strCondition + order by + @fldSort + + @strFSortType
  173. end
  174. end
  175. else
  176. begin
  177. set @page = @pageIndex-@page+1 --后半部分数据处理
  178. if @page <= 1 --最后一页数据显示
  179. set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@lastcount as VARCHAR(6))+ + @fldName+ from +@tblName
  180. + where 1=1 + @strCondition + order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
  181. else if(@Sort=1)
  182. set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  183. + where +@ID+ >(select max(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
  184. + where 1=1 + @strCondition + order by + @ID + + @strSortType+) AS TBMaxID)
  185. + + @strCondition+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
  186. else
  187. set @strTmp=@SqlSelect+ * from (+@SqlSelect+ top + CAST(@pageSize as VARCHAR(6))+ + @fldName+ from +@tblName
  188. + where +@ID+ <(select min(+ @ID +) from(+ @SqlSelect+ top + CAST(@pageSize*(@page-2)+@lastcount as Varchar(20)) + + @ID + from +@tblName
  189. + where 1=1 + @strCondition + order by + @ID + + @strSortType+) AS TBMaxID)
  190. + + @strCondition+ order by + @fldSort + + @strSortType+) AS TempTB+ order by + @fldSort + + @strFSortType
  191. end
  192. end
  193.  
  194. ------返回查询结果-----
  195. exec sp_executesql @strTmp
  196. --select datediff(ms,@timediff,getdate()) as 耗时
  197. --print @strTmp
  198. 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. java模拟用户登录(排除没有验证码情况下,抓取网页信息)

    import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import j ...

  2. [译]BEAST还是一个威胁吗?

    原文链接:https://community.qualys.com/blogs/securitylabs/2013/09/10/is-beast-still-a-threat 原文发表时间:2013. ...

  3. 不能读取文件“itunes.library.itl”因为它是由更高级别的itunes所创建的

    转自:https://zhidao.baidu.com/question/80796363.html 是因为你安装过高版本的后又装你版本的itunes. 你在电脑上搜索所有硬盘上的itunes lib ...

  4. 也谈LBP

    LBP(local banary patter)是一种非常经典的用来描述图像局部纹理特征的算子. 1,基本LBP LBP方法自1994年提出,此后就作为一个有效的纹理特征,不断的被人使用和改进.LBP ...

  5. List<string>里 每个元素重复了多少次

    List<string>里 每个元素重复了多少次 static void Main(string[] args) { List<string> list = new List& ...

  6. JDBC链接MySQL和Oracle

    import java.sql.*;         JDBC中所要用的包几乎都在import?java.sql.*;中: 在项目中导入Oracel或者是MySQL包和装载驱动:     项目的Cla ...

  7. 尝试自己建立以alpine 为基础的docker基础镜像和组件镜像

    安装ubuntu14.04 然后 #获取root权限 sudo su #安装docker apt-get install docker #准备基础镜像 docker pull alpine docke ...

  8. 【转】怎样提高VR渲染速度

    怎样提高VR渲染速度分析!<经验之谈>!!!VR的基本渲染方法掌握起来并不难,但是最迫切需要解决的问题是VR的出图速度问题.动则需要数小时的渲染时间真的是很难以接受,我们从三个影响速度的参 ...

  9. libpcap报文解析: ipv4、ipv6 @ 2014.7.2

    #include <string.h> #include <stdlib.h> #include <pcap.h> #include <stdio.h> ...

  10. jQuery 遍历 - map() 方法

    定义和用法 map() 把每个元素通过函数传递到当前匹配集合中,生成包含返回值的新的 jQuery 对象. 例子1: 构建表单中所有值的列表: <p><b>value为: &l ...