主頁 > 知識庫 > oracle 分頁 很棒的sql語句

oracle 分頁 很棒的sql語句

熱門標(biāo)簽:修改高德地圖標(biāo)注 廣州市400電話辦理 南通防封外呼系統(tǒng)運營商 語音電話機器人營銷方案 地圖標(biāo)注原件 百變地圖標(biāo)注 語音電話機器人缺點 淮安自動外呼系統(tǒng)開發(fā) 宜賓外呼系統(tǒng)廠家
CREATE OR REPLACE PROCEDURE PROC6338196642095312503719(輸入新聞主題 Varchar2,輸入新聞內(nèi)容 Varchar2,輸入發(fā)布時間 Varchar2,輸入當(dāng)前頁碼 Number,輸入每頁行數(shù) Number,輸出當(dāng)前頁碼 OUT Number,輸出總行行數(shù) OUT Number,輸出總頁頁數(shù) OUT Number,輸入是否下頁 Number,輸入新聞編號 Varchar2,RETURN_CURSOR OUT CUSTOMTYPE.MYRCTYPE)
--功能描述:
--編寫人:
--編寫日期:

--如果返回結(jié)果集,必須使用自定義游標(biāo)Return_Cursor
IS --OR AS

--變量定義區(qū)

v_cPageCount integer; -- 要顯示的數(shù)據(jù)總行數(shù)
v_cPage integer; -- 要顯示數(shù)據(jù)的當(dāng)前頁

BEGIN

--存儲過程主體
if 輸入新聞編號 is null then
begin
--- 輸出總行行數(shù)
select max(rownum) into 輸出總行行數(shù) from(
select * from xtnews where 1=1
and 輸入新聞主題 is null or (輸入新聞主題 is not null and V_XWZT like '%'||輸入新聞主題||'%')
and 輸入發(fā)布時間 is null or (輸入發(fā)布時間 is not null and D_FBSJ = to_date(輸入發(fā)布時間,'yyyy-mm-dd'))
)where 輸入新聞內(nèi)容 is null or (輸入新聞內(nèi)容 is not null and V_XWNR like '%'||輸入新聞內(nèi)容||'%');

-- 輸出總頁頁數(shù)
select ceil(輸出總行行數(shù)/輸入每頁行數(shù)) into 輸出總頁頁數(shù) from dual;
exception when no_data_found then
null;
end;
-- 計算 輸入當(dāng)前頁碼 要顯示的數(shù)據(jù)總行數(shù)
if 輸入當(dāng)前頁碼 is not null then
-- xia一頁
if 輸入是否下頁 = 1 then
-- 計算 獲取數(shù)據(jù)的當(dāng)前頁
v_cPage := (輸入當(dāng)前頁碼 + 1);
-- 最后一頁
if v_cPage > 輸出總頁頁數(shù) then
v_cPage := 輸出總頁頁數(shù);
end if;
end if;
-- shang一頁
if 輸入是否下頁 = 0 then
-- 計算 獲取數(shù)據(jù)的當(dāng)前頁
v_cPage := (輸入當(dāng)前頁碼 - 1);
-- 最前一頁
if v_cPage = 0 then
v_cPage := 1;
end if;
end if;
-- 要顯示的數(shù)據(jù)總行數(shù)
v_cPageCount := v_cPage * 輸入每頁行數(shù);
end if;
end if;
-- 執(zhí)行查詢 獲取 要顯示的數(shù)據(jù)
begin
open return_cursor for
select nts.* from(
select nt.* from (
select rownum 序號,n.* from(
select * from(
select * from(
select
I_ID 新聞編號,
V_XWZT 新聞主題,
V_XWNR 新聞內(nèi)容,
D_FBSJ 發(fā)布時間,
D_YXSJ 有效時間,
V_FBBM 發(fā)布部門
from xtnews
where 1=1 and 輸入新聞主題 is null or (輸入新聞主題 is not null and V_XWZT like '%'||輸入新聞主題||'%')
)where 輸入新聞內(nèi)容 is null or (輸入新聞內(nèi)容 is not null and 新聞內(nèi)容 like '%'||輸入新聞內(nèi)容||'%')
)where 輸入發(fā)布時間 is null or (輸入發(fā)布時間 is not null and 發(fā)布時間 = to_date(輸入發(fā)布時間,'yyyy-mm-dd'))
)n where 輸入新聞編號 is null or (輸入新聞編號 is not null and 新聞編號 = 輸入新聞編號)
order by rownum
)nt where nt.序號 = v_cPageCount order by 序號 desc
)nts where nts.序號 > (v_cPageCount-輸入每頁行數(shù)) order by 序號;
exception when no_data_found then
null;
end;

-- 輸出最后計算的當(dāng)前頁碼
if 輸入新聞編號 is null and v_cPage is not null then
輸出當(dāng)前頁碼 := v_cPage;
end if;

END;
您可能感興趣的文章:
  • oracle,mysql,SqlServer三種數(shù)據(jù)庫的分頁查詢的實例
  • Oracle實現(xiàn)分頁查詢的SQL語法匯總
  • Oracle中使用Rownum分頁詳細(xì)例子
  • Oracle row_number() over()解析函數(shù)高效實現(xiàn)分頁
  • 淺析Oracle和Mysql分頁的區(qū)別
  • Oracle與Mysql主鍵、索引及分頁的區(qū)別小結(jié)
  • Oracle、MySQL和SqlServe三種數(shù)據(jù)庫分頁查詢語句的區(qū)別介紹
  • 分頁技術(shù)原理與實現(xiàn)之Java+Oracle代碼實現(xiàn)分頁(二)
  • oracle分頁存儲過程 oracle存儲過程實例
  • oracle實現(xiàn)一對多數(shù)據(jù)分頁查詢篩選示例代碼

標(biāo)簽:南平 聊城 通化 南平 股票投資 嘉峪關(guān) 襄陽 池州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《oracle 分頁 很棒的sql語句》,本文關(guān)鍵詞  oracle,分頁,很,棒,的,sql,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《oracle 分頁 很棒的sql語句》相關(guān)的同類信息!
  • 本頁收集關(guān)于oracle 分頁 很棒的sql語句的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章