1樓:網友
用這個絕對可以行寬譽的。
select top 8 * from mes_list where list_id not in( select top 9 list_id from mes_list order by mes_list asc ) order by list_id asc
下面的是我在我的機巧穗器上測試通過的,你只需要修改一下資料檔段和表名,欄位名。
select top 5 * from userinfo where id not in(select top 5 id from userinfo order by id asc ) order by id asc
2樓:網友
可以用between...and...語句。
具體寫法和答如下:
select * from mes_list where list_id between 9 and 16
不知道行不基棚察行搏茄?
3樓:網友
select top 8 *
from mes_list
where type_name='運輸'迅悔 and list_id not in
select top 8 list_id
from mes_list
where type_name='運毀核輸'纖昌掘。
order by list_id descorder by list_id desc
sql返回第m條至第n條記錄
4樓:網友
select row_number() over (order by desc) as 'rownumber' ,*
from 表a
先新增序號。
然後select *
select row_number() over (order by desc) as 'rownumber' ,*
from 表am ) as 表b
表 between m and n
給分吧 你用這個可以做 資料庫分頁 很好使。
5樓:大衍之
取n到m條記錄的語句。
1. select top m * from tablename where id not in (select top n id from tablename)
2. select top m * into 臨時表(或表變數) from tablename order by columnname --將top m筆插入。
set rowcount n
select * from 表變數 order by columnname desc
3. select top n * from
select top m * from tablename order by columnname) a
order by columnname desc
4.如果tablename裡沒有其他identity列,那麼:
select identity(int) id0,* into #temp from tablename
取n到m條的語句為:
select * from #temp where id0 >=n and id0 <= m
如果你在執行select identity(int) id0,* into #temp from tablename這條語句的時候報錯,那是因為你的db中間的select into/bulkcopy屬性沒有開啟要先執行:
exec sp_dboption 你的db名字,'select into/bulkcopy',true
5.如果表裡有identity屬性,那麼簡單:
select * from tablename where identitycol between n and m
6樓:網友
總結的查詢從第n條到第m條記錄,希望對你有幫助:
查詢第n到m條記錄:
1)select top m * from tablename where id not in (select top n id from tablename)
此語句需要在表有主鍵類欄位,此句裡的為id
2) select top m * into 臨時表(或表變數) from tablename order by columnname --將top m筆插入。
set rowcount n
select * from 表變數 order by columnname desc
3)select top n * from
select top m * from tablename order by columnname) order by columnname desc
4)如果tablename裡沒有其他identity列,那麼:
select identity(int) id0,* into #temp from tablename
取n到m條的語句為:
select * from #temp where id0 >=n and id0 <= m
如果你在執行select identity(int) id0,* into #temp from tablename這條語句的時候報錯,那是因為你 的 db中間的select into/bulkcopy屬性沒有開啟要先執行:
exec sp_dboption 你的db名字,'select into/bulkcopy',true
5).如果表裡有identity屬性,那麼簡單:
select * from tablename where identity col between n and m
sql 查詢的語句返回了n條資料怎麼把這n條資料插入到一張虛擬表中
7樓:
select * into #t from table
查詢結果插入建立的虛擬表#t
sql查詢怎麼返回前n列資料
8樓:網友
我來吧,我測試了。符合要求。
select top 1 id,成績 from 你的表 order by id asc
unionselect top 1 id, 成績 from (select *,第乙個成績=(
select top 1 成績 from 你的表 order by id asc) from 你的表。
ttt where 成績 + 第乙個成績 > 100 order by id asc
9樓:網友
select *
from 表。
where id <=(
select right('0'+cast(max(id) +1 as varchar(255)),2)
from (
select *,select sum(成績) from 表 a where <= as 合計成績。
from 表 b
tb where 合計成績 < 100)
10樓:鋒利的貓
select top 10 * from table1sql server用top n 就可以了~~你自己的描述讓人看不懂~~不知道你要的是不是這個效果。/望。
想從sql中提取中間的第n條到n+5資料
11樓:飛翔塵埃
select top "+m+" from 表 where 表。主鍵 in (select top "+n+" 表。主鍵 from 表) order by 表。主鍵 desc
就像你說的,第5-10條記錄。
那麼n=10,m=5
裡先去前10條,外面的語句是把前十條到過來排,然後去前5條,就是5-10條了。
sql查詢,返回10條資料
12樓:網友
說實話,您畢凱的問題我半天沒看懂,分析了下您可能要問手段喚的問題:
查詢a欄位等於或類燃察似於十個變數,得到資料中的b欄位 對嗎。
這樣試試:select b from table where a in(a1,a2,a3,a4...a10)
sql 如何返回前一條資料 資料如下
13樓:網友
你這個棗猛結果出錯了吧。
order by main, id怎麼會是。
122呢?後面id是公升序哦。
而且如果有。
的話,你要那個呢?
另外,還需要知道你是什麼數凳中橋據庫,oracle的話培渣,這題目太容易了。
這個可以。select cid, mainid, idfrom tab t
where not exists (select 1from tab
where mainid < select mainid from tab where id = 7)
and mainid <
and not exists (select 1 from tab where mainid = and id >
SQL指定查詢N行到N行的語句怎麼寫
select from test where rownum 10 and rownum 30 機子上沒裝oracle啊,不過好像記得這樣是可以的,你試試還有啊,你想選什麼樣的,最好加上order by 用分頁的方法 這是我分頁的儲存過程 if exists select from sysobject...
怎麼讓vivo手機的返回鍵亮著
請問您的手機是什麼機型呢?目前vivo手機有按鍵燈的機型有如下幾款哦 v1 y1 s1 v2 e3 s6 s6t s12 s9 e5 s11 s9t s11t y19t xplay 藍色 黑色版本沒有按鍵燈 y20t xplay3s。2 部分機型預設開啟,不支援關閉。3 vivo只有少數幾款機型支援...
泰拉瑞亞怎麼讓人住進來,泰拉瑞亞怎麼讓人NPC如住進來 NPC入住條件
想要使npc入進你的 房子你需要滿足npc的入住條件以及一套符合要求的房子,過一段時間npc就會入住房子。房子要求 乙個4x8 或 5x7的房間且牆面鋪滿,一張桌子 一張椅子 一扇門以及乙個火把 光源 圖 乙個合格的房子 部分npc入住條件 功能 與導遊對話可以了解到關於泰拉瑞亞的一些資訊,對新手玩...