在SQL SERVER中查詢資料庫中第幾條至第幾條之間的資料SQL語句寫法,第幾條sql

來源:互聯網
上載者:User

在SQL SERVER中查詢資料庫中第幾條至第幾條之間的資料SQL語句寫法,第幾條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

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.