SQL Server--實現 Limit m, n 的功能

BtWangZhi發表於2017-09-06

1 如果要查詢上述結果中第 7 條到第 9 條記錄,則相應的SQL語句是:

select top 3 id from tablename  
where id not in (  
  select top 6 id from tablename  
)

2 取第m條到第n條記錄:

select top (n-m+1) id from tablename  
where id not in (  
  select top m-1 id from tablename  
)  

摘自:http://blog.csdn.net/sjzs5590/article/details/7337541
未完待續。。。

相關文章