题:取表table中100条-200条之间数据方法1:临时表复制代码代码如下:selecttop200*into#aafromtableorderbytime--将topm笔插入临时表setrowcount100select*from#aaorderbytimedesc--droptable#aa--删除临时表方法2:复制代码代码如下:selecttop100*from(selecttop200*fromtableorderbytimeasc)aorderbytimedesc方法3:notin复制代码代码如下:selecttop100*fromv_companywhere(idnotin(selecttop100idfromv_companyorderbyidasc))orderbyidasc这里只列举3种我测试的方法,还有别的方案就由高手补上了
题:取表table中100条-200条之间数据
方法1:临时表
select top 200 * into #aa from table order by time-- 将top m笔插入 临时表
set rowcount 100
select * from #aa order by time desc
--drop table #aa --删除临时表
方法2:
select top 100 * from
(select top 200 * from table order by time asc) a
order by time 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速度最快,请高手补充说明,谢谢
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!