题:取表table中100条-200条之间数据

方法1:临时表

select top 200 * into #aa from table order by id-- 将top m笔插入 临时表
set rowcount 100
select * from #aa order by id desc

--drop table #aa --删除临时表

 

方法2:

select top 100 * from
(select top 200 * from table order by id asc) a
order by id desc

 

方法3:not in

select top 100 * from v_company where (
id not in
(select top 100 id from v_company order by id asc)
) order by id asc

 

这里只列举3种我测试的方法,还有别的方案就由高手补上了,3种方案的效率也不竞相同,我一直认为not in效率不好,但在这里使用not in速度最快,请高手补充说明,谢谢

相关文章:

  • 2022-12-23
  • 2022-01-20
  • 2021-07-08
  • 2021-07-28
  • 2021-09-23
  • 2022-12-23
猜你喜欢
  • 2021-08-30
  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
  • 2021-11-30
相关资源
相似解决方案