首页 > 数据库技术 > 详细

mssql 取数据指定条数(例:100-200条的数据)

时间:2019-08-31 12:03:56      阅读:177      评论:0      收藏:0      [点我收藏+]

方法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:

1 select top 100 * from 
2 (select top 200 * from table order by time asc)  
3 order by time desc 

方法3: not in

1 select top 100 * from v_company where ( 
2 id not in 
3 (select top 100 id from v_company order by id asc) 
4 ) order by id asc 

 

mssql 取数据指定条数(例:100-200条的数据)

原文:https://www.cnblogs.com/aspphp/p/11438119.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!