修改后的SQL分页存储过程,利用2分法,支持排序
- /****** 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分法,支持排序的更多相关文章
- [转]关于SQL分页存储过程的分析
[转]关于SQL分页存储过程的分析 建立一个 Web 应用,分页浏览功能必不可少.这个问题是数据库处理中十分常见的问题.经典的数据分页方法是:ADO 纪录集分页法,也就是利用ADO自带的分页功能(利用 ...
- 完整SQL分页存储过程(支持多表联接)
http://www.cnblogs.com/andiki/archive/2009/03/24/1420289.html Code/********************************* ...
- Delphi调用SQL分页存储过程实例
Delphi调用SQL分页存储过程实例 (-- ::)转载▼ 标签: it 分类: Delphi相关 //-----下面是一个支持任意表的 SQL SERVER2000分页存储过程 //----分页存 ...
- 关于SQL分页存储过程的分析
建 立一个 Web 应用,分页浏览功能必不可少.这个问题是数据库处理中十分常见的问题.经典的数据分页方法是:ADO 纪录集分页法,也就是利用ADO自带的分页功能(利用游标)来实现分页.但这种分页方法仅 ...
- 真正通用的SQL分页存储过程
关于SQL分页的问题,网上找到的一些SQL其实不能真正做到通用,他们主要是以自增长ID做为前提的.但在实际使用中,很多表不是自增长的,而且主键也不止一个字段,其实我们稍做改进就可以达到通用.这里还增加 ...
- SQL 单表分页存储过程和单表多字段排序和任意字段分页存储过程
第一种:单表多字段排序分页存储过程 --支持单表多字段查询,多字段排序 create PROCEDURE [dbo].[UP_GetByPageFiledOrder] ( ), --表 ...
- SQL - 分页存储过程
http://www.jb51.net/article/71193.htm http://www.webdiyer.com/utils/spgenerator/ create PROCEDURE [d ...
- SqlServer分页存储过程(多表查询,多条件排序),Repeater控件呈现数据以及分页
存储过程(Stored Procedure)是在大型数据库系统中,一组为了完成特定功能的SQL 语句集,存储在数据库中,经过第一次编译后再次调用不需要再次编译,用户通过指定存储过程的名字并给出 ...
- sql分页存储过程比较
一,先创建一百万条数据 drop table #tmp create table #tmp ( id ,) primary key, name ) ) declare @i int begin ins ...
随机推荐
- java模拟用户登录(排除没有验证码情况下,抓取网页信息)
import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import j ...
- [译]BEAST还是一个威胁吗?
原文链接:https://community.qualys.com/blogs/securitylabs/2013/09/10/is-beast-still-a-threat 原文发表时间:2013. ...
- 不能读取文件“itunes.library.itl”因为它是由更高级别的itunes所创建的
转自:https://zhidao.baidu.com/question/80796363.html 是因为你安装过高版本的后又装你版本的itunes. 你在电脑上搜索所有硬盘上的itunes lib ...
- 也谈LBP
LBP(local banary patter)是一种非常经典的用来描述图像局部纹理特征的算子. 1,基本LBP LBP方法自1994年提出,此后就作为一个有效的纹理特征,不断的被人使用和改进.LBP ...
- List<string>里 每个元素重复了多少次
List<string>里 每个元素重复了多少次 static void Main(string[] args) { List<string> list = new List& ...
- JDBC链接MySQL和Oracle
import java.sql.*; JDBC中所要用的包几乎都在import?java.sql.*;中: 在项目中导入Oracel或者是MySQL包和装载驱动: 项目的Cla ...
- 尝试自己建立以alpine 为基础的docker基础镜像和组件镜像
安装ubuntu14.04 然后 #获取root权限 sudo su #安装docker apt-get install docker #准备基础镜像 docker pull alpine docke ...
- 【转】怎样提高VR渲染速度
怎样提高VR渲染速度分析!<经验之谈>!!!VR的基本渲染方法掌握起来并不难,但是最迫切需要解决的问题是VR的出图速度问题.动则需要数小时的渲染时间真的是很难以接受,我们从三个影响速度的参 ...
- libpcap报文解析: ipv4、ipv6 @ 2014.7.2
#include <string.h> #include <stdlib.h> #include <pcap.h> #include <stdio.h> ...
- jQuery 遍历 - map() 方法
定义和用法 map() 把每个元素通过函数传递到当前匹配集合中,生成包含返回值的新的 jQuery 对象. 例子1: 构建表单中所有值的列表: <p><b>value为: &l ...