如何正確的使用oracle管道函數(shù)?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
連云港網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、成都響應式網(wǎng)站建設等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)公司公司2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)公司。
oracle管道函數(shù)是一類特殊的函數(shù),oracle管道函數(shù)返回值類型必須為集合
如果需要在客戶端實時的輸出函數(shù)執(zhí)行過程中的一些信息,在oracle9i以后可以使用管道函數(shù)(pipeline function)。
關鍵字PIPELINED表明這是一個oracle管道函數(shù),oracle管道函數(shù)的返回值類型必須為集合
--創(chuàng)建一個集合接受返回的值 1st.create or replace type type_split as table of varchar2(4000); --創(chuàng)建管道函數(shù) create or replace function split(p_string varchar2, p_sep varchar2 := ',') return type_split pipelined --dbms_output輸出的信息,需要在服務器執(zhí)行完整個函數(shù)后一次性的返回給客戶端 --pipelined 表明這是一個管道函數(shù),oracle管道函數(shù)的返回值類型必須為集合 --PIPE ROW語句被用來返回該集合的單個元素 as v_string varchar2(4000) := p_string; idx Number; begin loop --idx為第一個,所在的位置 idx := instr(v_string, p_sep); if idx > 0 then --,前面的數(shù)據(jù)加入Row/,后面的數(shù)據(jù)為下個循環(huán)使用的字符串 pipe row(substr(v_string, 1, idx - 1)); v_string := substr(v_string, idx + length(p_sep)); else exit; end if; end loop; --執(zhí)行完后需return return ; end; test: select a.cust_po,b.column_value proqepi from ( select cust_po,proqepi from cux_custpo_info_t where cust_po='PX90806001-4' ) a,(table(split(a.proqepi,','))) b
看完上述內容,你們掌握如何正確的使用oracle管道函數(shù)的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!