SQL SERVER 不同版本的分页

 top not in方式  
select top 条数 *  from tablename  
where Id not in (select top 条数*页数  Id from tablename)  
  
 ROW_NUMBER() OVER()方式   
 select * from (   
    select *, ROW_NUMBER() OVER(Order by Id ) AS RowNumber from tablename  
  ) as b  
  where RowNumber BETWEEN 当前页数-1*条数 and 页数*条数     between and 可以理解为第几条查询第几条到第几条
   
offset fetch next方式  
SQL2012以上的版本才支持  
select * from tablename  

 order by Id offset 页数 row fetch next 条数 row only   

比较:

在数据量较大时

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

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

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

猜你喜欢

转载自blog.csdn.net/zxcvb12zxcvb12/article/details/80742778