轉貼_字串分隔_拆分

wisdomone1發表於2012-11-22

http://atgc.itpub.net/post/22412/217030

 

create or replace type acc_type as object
(acc varchar2(50))
/

create or replace type acc_table as table of acc_type
/

create or replace function str2table (acc_str in varchar2) return acc_table pipelined
is
v_str varchar2(30000) := acc_str;
v_acc varchar2(30);
v_acc_end pls_integer;
begin
loop
v_acc_end := instrb(v_str,',');
exit when (v_acc_end=0 or v_str is null);
v_acc := substrb(v_str,1,v_acc_end-1);
v_str := ltrim(v_str,v_acc);
v_str := ltrim(v_str,',');
pipe row(acc_type(rtrim(v_acc,';')));
end loop;
return;
end;
/

SQL> select * from table(str2table('TEST1,TEST1,12,123,55,99MOON,'));

ACC
--------------------------------------------------
TEST1
TEST1
12
123
55
99MOON

6 rows selected.

SQL>

 

自己之前編寫

http://space.itpub.net/9240380/viewspace-748309

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-749780/,如需轉載,請註明出處,否則將追究法律責任。

相關文章