ORACLE分頁(yè)SQL語(yǔ)句建站知識(shí)
導(dǎo)讀:1建站知識(shí)1.根據(jù)ROWID來分 select * from t_xiaoxi where rowid in(select rid from (select rownum網(wǎng)站建設(shè)網(wǎng)站seo優(yōu)化軟件。
1.根據(jù)ROWID來分
select * from t_xiaoxi where rowid網(wǎng)站建設(shè)多少錢 in(select rid from (select rownum rn,rid from公司網(wǎng)站建設(shè)(select rowid rid,cid from
t_xiaoxi order by cid desc) where rownum<10000) where rn>9980) order by cid desc;
執(zhí)行時(shí)間0.03秒
2.按分析函數(shù)來分
select * from (select t.*,row_number() over(order by cid desc) rk from t_xiaoxi t) where rk<10000 and rk>9980;
執(zhí)行時(shí)間1.01秒
3.按ROWNUM來分
select * from(select t.*,rownum rn from(select * from t_xiaoxi order by cid desc) t where rownum<10000) where
rn>9980;執(zhí)行時(shí)間0.1秒
其中t_xiaoxi為表名稱,cid為表的關(guān)鍵字段,取按CID降序排序后的第9981-9999條記錄,t_xiaoxi表有70000多條記錄
個(gè)人感覺1的效率最好,3次之,2最差相關(guān)[建設(shè)網(wǎng)站標(biāo)簽:植入關(guān)鍵詞]。
聲明: 本文由我的SEOUC技術(shù)文章主頁(yè)發(fā)布于:2023-05-22 ,文章ORACLE分頁(yè)SQL語(yǔ)句建站知識(shí)主要講述分頁(yè),語(yǔ)句,SQL網(wǎng)站建設(shè)源碼以及服務(wù)器配置搭建相關(guān)技術(shù)文章。轉(zhuǎn)載請(qǐng)保留鏈接: http://www.bifwcx.com/article/web_4053.html
為你推薦與ORACLE分頁(yè)SQL語(yǔ)句建站知識(shí)相關(guān)的文章
-
通王TWCMS 2.0.3網(wǎng)站模板程序下載
(126)人喜歡 2024-01-15 -
Windows官方原版在哪里下載
(175)人喜歡 2024-01-15 -
WordPress網(wǎng)站模板發(fā)帖標(biāo)題顏色設(shè)置
(131)人喜歡 2024-01-07 -
修改discuz論壇帖子標(biāo)題80字符的長(zhǎng)度限制
(249)人喜歡 2024-01-07 -
wordpress程序調(diào)用不帶超鏈接的Tag標(biāo)簽
(234)人喜歡 2024-01-05 -
網(wǎng)站在不同時(shí)期需調(diào)整內(nèi)容更新的方向
(112)人喜歡 2023-08-12