这是一个非常清晰和值得赞的方法
假设从主键为id的student表中查找第n条到第m条的记录
select top m-n+1 *
from student
where (id not in (select top n-1 id from student))
这是一个非常清晰和值得赞的方法
假设从主键为id的student表中查找第n条到第m条的记录
select top m-n+1 *
from student
where (id not in (select top n-1 id from student))