溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SQL server是怎么分頁的

發(fā)布時間:2021-08-06 16:17:55 來源:億速云 閱讀:164 作者:chen 欄目:編程語言

本篇內(nèi)容介紹了“SQL server是怎么分頁的”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

1、三重循環(huán)

先取前20頁,然后倒序,取倒序后前10條記錄,這樣就能得到分頁所需要的數(shù)據(jù),不過順序反了,之后可以將再倒序回來,也可以不再排序了,直接交給前端排序。

-- 設(shè)置執(zhí)行時間開始,用來查看性能的
set statistics time on ;
-- 分頁查詢(通用型)
select *
from (select top pageSize *
from (select top (pageIndex*pageSize) *
from student
order by sNo asc ) -- 其中里面這層,必須指定按照升序排序,省略的話,查詢出的結(jié)果是錯誤的。
 
as temp_sum_student
order by sNo desc ) temp_order
order by sNo asc
-- 分頁查詢第2頁,每頁有10條記錄
select *
from (select top 10 *
from (select top 20 *
from student
order by sNo asc ) -- 其中里面這層,必須指定按照升序排序,省略的話,查詢出的結(jié)果是錯誤的。
as temp_sum_student
order by sNo desc ) temp_order
order by sNo asc
;

2、利用max(主鍵)

先top前11條行記錄,然后利用max(id)得到最大的id,再重新再這個表查詢前10條,不過要加上條件,where id>max(id)。

set statistics time on;
-- 分頁查詢(通用型)
select top pageSize *
from student
where sNo>=
(select max(sNo)
from (select top ((pageIndex-1)*pageSize+1) sNo
from student
order by  sNo asc) temp_max_ids)
order by sNo;
-- 分頁查詢第2頁,每頁有10條記錄
select top 10 *
from student
where sNo>=
(select max(sNo)
from (select top 11 sNo
from student
order by  sNo asc) temp_max_ids)
order by sNo;

“SQL server是怎么分頁的”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

sql
AI