• Sql2005过程分页


     ALTER PROCEDURE [dbo].[procPageChangeForSql2005]
    (
     @fromSql varchar(4000),
     @querySql varchar(4000),
     @whereSql varchar(max),
     @orderBySql varchar(200),
     @keyField varchar(100),
     @PageSize int,                     --每页多少条记录
     @PageIndex int,               --指定当前为第几页
     @TotalRecord int output            --返回总记录数
    )
    AS
    BEGIN
        declare @sql nvarchar(max)
        declare @totalCountSql nvarchar(MAX)
        declare @StartRecord int
        declare @EndRecord int declare @nPageCount int --处理开始点和结束点
        IF (@whereSql! = '' AND @whereSql IS NOT NULL)
            set @whereSql=' where '+ @whereSql
        else set @whereSql=''
        --计算总条数
        set @totalCountSql= N'select @TotalRecord = count(*) from ' + @fromSql+@whereSql --总记录数语句
        exec sp_executesql @totalCountSql,N'@TotalRecord int out',@TotalRecord output;--返回总记录数
        if(@PageSize>-1)
        begin     set @nPageCount =CONVERT(int, ceiling(@TotalRecord*1.0/@PageSize))
            if(@nPageCount=0 and @PageIndex != 0)
            set @PageIndex = 0
            else if (@PageIndex > (@nPageCount - 1))
            set @PageIndex = 0
            set @StartRecord = (@PageIndex)*@PageSize + 1
            set @EndRecord = @StartRecord + @PageSize - 1  --组织Sql语句 set @sql ='(select row_number() over (order by '+ @orderBySql +') as rowId,'+@querySql+' from '+ @fromSql+@whereSql;--查询语句 set @sql ='select * from ' + @sql + ') as t where rowId between ' + ltrim(str(@StartRecord)) + ' and ' +  ltrim(str(@EndRecord));
        end
        else
        begin IF (@orderBySql! = '' AND @orderBySql IS NOT NULL) set @orderBySql=' order by '+ @orderBySql else set @orderBySql='' set @sql='select '+@querySql+' from '+ @fromSql+@whereSql+@orderBySql
        end
        Exec(@sql)
    END
    

      

    作者:阿笨

          【官方QQ一群:跟着阿笨一起玩NET(已满)】:422315558跟着阿笨一起玩NET

          【官方QQ二群:跟着阿笨一起玩C#(已满)】:574187616跟着阿笨一起玩C#

          【官方QQ三群:跟着阿笨一起玩ASP.NET(已满)】:967920586跟着阿笨一起玩ASP.NET

          【官方QQ四群:Asp.Net Core跨平台技术开发(可加入)】:806491485Asp.Net Core跨平台技术开

          【官方QQ五群:.NET Core跨平台开发技术(可加入)】:1036896405.NET Core跨平台开发技术

          【网易云课堂】:https://study.163.com/provider/2544628/index.htm?share=2&shareId=2544628

          【腾讯课堂】:https://abennet.ke.qq.com

          【51CTO学院】:https://edu.51cto.com/sd/66c64

          【微信公众号】:http://dwz.cn/ABenNET

  • 相关阅读:
    当程序员的那些狗日日子
    程序员常犯的几个错误
    我没有帮你的义务,却有拒绝你的权力
    并发 并行 同步 异步 多线程的区别
    cookie的存取
    sqlserver 处理百万级以上的数据处理与优化
    为什么 jmeter 分布式测试,一定要设置 java.rmi.server.hostname
    详细解析 nginx uri 如何匹配 location 规则
    mysql innodb 从 ibd 文件恢复表数据
    mysql 从 frm 文件恢复 table 表结构的3种方法
  • 原文地址:https://www.cnblogs.com/51net/p/15302573.html
Copyright © 2020-2023  润新知