欢迎来到代码驿站!

MsSql

当前位置:首页 > 数据库 > MsSql

sql 取两值之间的数据方法(例:100-200之间的数据)

时间:2022-05-23 09:18:06|栏目:MsSql|点击:
题:取表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速度最快,请高手补充说明,谢谢

上一篇:Sql server端口未打开连接不上的解决方案

栏    目:MsSql

下一篇:没有了

本文标题:sql 取两值之间的数据方法(例:100-200之间的数据)

本文地址:http://www.codeinn.net/misctech/202614.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有