zoukankan      html  css  js  c++  java
  • Set Rowcount分页查询(转)

         SQL Server中有一个Set Rowcount的的设置,它的意思是使命令的处理在响应指定的行数之后停止处理命令,利用这个特点,我们可以借用它来在一个千万行级数据表中实现高性能分页查询。先来说说实现方式:
          1、我们来假定Table中有一个已经建立了索引的主键字段ID(整数型),我们将按照这个字段来取数据进行分页。
          2、页的大小我们放在@PageSize中
          3、当前页号我们放在@CurrentPage中
          4、如何让记录指针快速滚动到我们要取的数据开头的那一行呢,这是关键所在!有了Set RowCount,我们就很容易实现了。
          5、如果我们成功地滚动记录指针到我们要取的数据的开头的那一行,然后我们把那一行的记录的ID字段的值记录下来,那么,利用Top和条件,我们就很容易的得到指定页的数据了。当然,有了Set RowCount,我们难道还用Top么?

    用sqlserver2005教程示例数据库做的实验:

    Declare @ID int

    Declare @MoveRecords int

    Declare @PageSize int

    Declare @CurrentPage int 

    --@CurrentPage和@PageSize是传入参数

    Set @PageSize = 10

    Set @CurrentPage = 1

    Set @MoveRecords=@CurrentPage * @PageSize+1

    --下面两行实现快速滚动到我们要取的数据的行,并把ID记录下来,响应MoveRecords行后停止处理命令

    Set Rowcount @MoveRecords

    Select @ID=CustomerID from Sales.Customer Order by CustomerID

    --最恨为了减少麻烦使用*了,但是在这里为了说明方便,暂时用一下 。响应PageSize行后停止处理

    Set Rowcount @PageSize
    Select * From Sales.Customer Where CustomerID>=@ID Order By CustomerID
    Set Rowcount 0

  • 相关阅读:
    process crashed and the client did not handle it, not reloading the page because we reached the maximum number of attempts
    mac 查看ip
    axios和vue-axios的关系
    export default 和 export 区别
    Mac 编辑hosts文件
    npm --save-dev --save 的区别
    CommonHelper 公共类
    2.06StuModify.aspx(修改姓名,性别,所在班级)
    linux网桥浅析
    Bridge的数据在内核处理流程
  • 原文地址:https://www.cnblogs.com/axyz/p/1856746.html
Copyright © 2011-2022 走看看