今天在寫程序的時候,需要生成從開始id到結(jié)束id的sql語句。原來不需要這個功能現(xiàn)在就需要了。
在SQL SERVER中查詢數(shù)據(jù)庫中第幾條至第幾條之間的數(shù)據(jù)SQL語句如何寫?
如:在SQL SERVER中查詢數(shù)據(jù)庫中第10條至30條之間的數(shù)據(jù)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 標(biāo)識字段 not in (select top 9 標(biāo)識字段 from 表 )
------解決方案--------------------
1
select top 20 * from 表
where id not in (select top 10 id from 表 order by id)
order by id
2--應(yīng)該從11開始
select * from 表 where id between 11 and 30
您可能感興趣的文章:- sqlserver 多表查詢不同數(shù)據(jù)庫服務(wù)器上的表
- SQLSERVER查詢所有數(shù)據(jù)庫名,表名,和字段名的語句
- 深入SQL Server 跨數(shù)據(jù)庫查詢的詳解
- sqlserver 查詢數(shù)據(jù)庫大小的方法
- 數(shù)據(jù)庫查詢排序使用隨機(jī)排序結(jié)果示例(Oracle/MySQL/MS SQL Server)
- SQLSERVER 本地查詢更新操作遠(yuǎn)程數(shù)據(jù)庫的代碼
- sql server中通過查詢分析器實現(xiàn)數(shù)據(jù)庫的備份與恢復(fù)方法分享
- sqlserver關(guān)于分頁存儲過程的優(yōu)化【讓數(shù)據(jù)庫按我們的意思執(zhí)行查詢計劃】
- 使用SQL Server數(shù)據(jù)庫嵌套子查詢的方法
- sql server實現(xiàn)在多個數(shù)據(jù)庫間快速查詢某個表信息的方法