分页查询
Posted 波涛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分页查询相关的知识,希望对你有一定的参考价值。
Student表如下图:
分页查询方式一:
1 select top 3 * from Student 2 where StudentId not in 3 ( 4 select top 3 StudentId from Student 5 order by StudentId 6 ) 7 order by StudentId
执行结果:
分页查询方式二:
1 select * from 2 ( 3 select *, row_number() over(order by StudentId)as id from Student 4 )as tem 5 where id between 2 and 6
执行结果:
以上是关于分页查询的主要内容,如果未能解决你的问题,请参考以下文章