程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 二種sql分頁查詢語句分享

二種sql分頁查詢語句分享

編輯:關於SqlServer

根據題意理解:

本質就是寫分頁查詢:

每頁條數:10條;

當前頁碼:4頁;

復制代碼 代碼如下:
//第一種:
select * from
 (select ROW_NUMBER() over(order by Id asc) as num,* from UserInfo)as u
 where u.num
 between
 10*(4-1)+1
 and
 10*4
//第二種:
select top 10 * from UserInfo
where Id not in
(select top (10*3) id from UserInfo order by Id)
order by Id

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