zoukankan      html  css  js  c++  java
  • 多条件分页存储过程数据库写法


    CREATE proc [dbo].[p_paging]
    @tableName varchar(8000),          --表名、视图名
    @indexCol varchar(50) = 'id',      --标识列名(如:比如主键、标识,推荐使用索引列)
    @pageSize int = 10,                --页面大小
    @pageIndex int = 0,                --当前页
    @orderCol varchar(100) = 'id desc',--排序 (如:id)
    @where varchar(max) = '',         --条件
    @columns varchar(500) = '*'        --要显示的列
    as
    declare @sql varchar(max)
    declare @sql2 varchar(max)
    declare @where2 varchar(max)
     if @where <> ''
    begin
        select @where2 = ' And ' + @where
        select @where = ' Where ' + @where
    end
    else
        select @where2 = ''


    select @sql = 'Select Top ' + Convert(varchar(10),@pageSize) + ' ' + @columns + ' From ' + @tableName
    select @sql2 = @sql + @where
    select @sql =  @sql + ' Where ' + '(' + @indexCol + ' Not In (Select Top ' + Convert(varchar(10), @pageSize * @pageIndex) + ' ' + @indexCol + ' From ' + @tableName + @where +  ' Order by '+ @orderCol +'))'
    select @sql = @sql + @where2
    select @sql = @sql + ' Order by ' + @orderCol
    --获取数据集
    exec (@sql)
    PRINT @sql
    select @sql2 = Replace(@sql2,'Top ' + Convert(varchar(10), @pageSize) + ' ' + @columns, 'count(1)')
    --获取总数据条数
    exec(@sql2)
     GO

  • 相关阅读:
    secureCRT常用设置
    SecureCRT恢复默认字体
    hdu 1515 dfs
    hdu 2216 bfs
    hdu 1973 bfs+素数判断
    hdu 1429 bfs+状压
    poj 3463 次短路
    hdu 2962 最短路+二分
    hdu 2112 最短路
    hdu 3397 线段树
  • 原文地址:https://www.cnblogs.com/jcy1/p/9524121.html
Copyright © 2011-2022 走看看