常见的三种SQL分页方式

Posted 仰望星空

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常见的三种SQL分页方式相关的知识,希望对你有一定的参考价值。



 
  1.  --top not in方式  
  2. select top 条数 *  from tablename  
  3. where Id not in (select top 条数*页数  Id from tablename)  
  4.   
  5.   
  6.   
  7. --ROW_NUMBER() OVER()方式   
  8.  select * from (   
  9.     select *, ROW_NUMBER() OVER(Order by Id ) AS RowNumber from tablename  
  10.   ) as b  
  11.   where RowNumber BETWEEN 当前页数-1*条数 and 页数*条数     
  12.   
  13.   
  14.   
  15. --offset fetch next方式  
  16. --SQL2012以上的版本才支持  
  17. select * from tablename  
  18.  order by Id offset 页数 row fetch next 条数 row only   



 

 

分析:在数据量较大时

top not in方式:查询靠前的数据速度较快

ROW_NUMBER() OVER()方式:查询靠后的数据速度比上一种较快

offset fetch next方式:速度稳定,优于前2种,但sql版本限制2012及以上才可使用





以上是关于常见的三种SQL分页方式的主要内容,如果未能解决你的问题,请参考以下文章

SQLOracle分页查询的三种方法

Java项目开发中实现分页的三种方式一篇包会

Asp.Net中的三种分页方式总结

MyBatis的三种分页方式,你用过几种?

MyBatis的三种分页方式,你用过几种?

Sql 分页三种方式