程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> 更多數據庫知識 >> 在SQL SERVER中查詢數據庫中第幾條至第幾條之間的數據SQL語句寫法

在SQL SERVER中查詢數據庫中第幾條至第幾條之間的數據SQL語句寫法

編輯:更多數據庫知識

今天在寫程序的時候,需要生成從開始id到結束id的sql語句。原來不需要這個功能現在就需要了。

在SQL SERVER中查詢數據庫中第幾條至第幾條之間的數據SQL語句如何寫?
如:在SQL SERVER中查詢數據庫中第10條至30條之間的數據SQL語句如何寫?


------解決方案--------------------
select top 20 * from 表 where id in (select top 30 id from 表 order by id)order by id desc
------解決方案--------------------
如果有唯一列可以用ls的


select identity(int,1,1) id,* into temp from 表

select * from temp where id between 10 and 30
------解決方案--------------------
select top 20 * from 表 where 標識字段 not in (select top 9 標識字段 from 表 )
------解決方案--------------------
1
select top 20 * from 表
where id not in (select top 10 id from 表 order by id)
order by id

2--應該從11開始
select * from 表 where id between 11 and 30

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved