題:取表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速度最快,請高手補充說明,謝謝