oracle管道函數的用法(一行拆爲多行)

oracle管道函數是一類特殊的函數,oracle管道函數返回值類型必須爲集合服務器

若是須要在客戶端實時的輸出函數執行過程當中的一些信息,在oracle9i之後可使用管道函數(pipeline function)。oracle

關鍵字PIPELINED代表這是一個oracle管道函數,oracle管道函數的返回值類型必須爲集合

函數

--建立一個集合接受返回的值oop

1st.create or replace type type_split as table of varchar2(4000);測試

 

--建立管道函數spa

 

create or replace function split(p_string varchar2, p_sep varchar2 := ',') return type_split pipelined
--dbms_output輸出的信息,須要在服務器執行完整個函數後一次性的返回給客戶端
--pipelined 代表這是一個管道函數,oracle管道函數的返回值類型必須爲集合
--PIPE ROW語句被用來返回該集合的單個元素
asip

v_string varchar2(4000) := p_string;
idx Number;字符串

begin
loop
--idx爲第一個,所在的位置
idx := instr(v_string, p_sep);
if idx > 0 then
--,前面的數據加入Row/,後面的數據爲下個循環使用的字符串
pipe row(substr(v_string, 1, idx - 1));
v_string := substr(v_string, idx + length(p_sep));
else
exit;
end if;
end loop;
--執行完後需return
return ;
end;string

 

 

test:it

 

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

 

測試成功。

相關文章
相關標籤/搜索