注:利用limit的這個引數使用的特點,可以很方便地在資料庫層面上實現分頁。
求第n頁的結果集:
select * from table_name where id>0 limit 第n頁的起始下標,頁大小
注意:limit的最小下標為0。第n頁的起始下標為:(n-1)*頁大小。頁大小:一頁有多少條記錄。
mysql獲取第n條記錄
問題補充:那麼再請問怎麼查詢當前記錄是資料表中的第幾條記錄呢?謝謝提問者:
lwl_hp -
一級 最佳答案
檢舉0回答者: txyluffy - 五級
收藏於 2010-06-24
SQL Oracle取出第m條到第n條記錄的方法
sql oracle取出第m條到第n條記錄的方法 用一句sql取出第 m 條到第 n 條記錄的方法 從table 表中取出第 m 條到第 n 條的記錄 not in 版本 select top n m 1 from table where id not in select top m 1 id fr...
SQL取出第 m 條到第 n 條記錄的方法
從table 表中取出第 m 條到第 n 條的記錄 not in 版本 select top n m 1 from table where id not in select top m 1 id from table 從table表中取出第m到n條記錄 exists版本 select top n m...
SQL取出第 m 條到第 n 條記錄的方法
分頁或者分段呼叫資料的時候很有用的啊 從table 表中取出第 m 條到第 n 條的記錄 color red not in 版本 color select top n m 1 from table where id not in select top m 1 id from table color ...