首頁 > 資料庫 > mysql教程 > 使用表函数切割字符串

使用表函数切割字符串

WBOY
發布: 2016-06-07 14:56:25
原創
1070 人瀏覽過

无详细内容 无 CREATE OR REPLACE TYPE table_userid is table of varchar2(100); create or replace function get_userid_tab(v_str in varchar2) return table_userid pipelined as v_new_str varchar2(4000); begin if nvl(v_str,null) is not null then v

CREATE OR REPLACE TYPE table_userid is table of varchar2(100); 

create or replace function get_userid_tab(v_str in varchar2) return table_userid pipelined as 

v_new_str varchar2(4000); 

begin 

  if nvl(v_str,null) is not  null then 


    v_new_str:=v_str; 

    while 1=1 loop 

      if instr(v_new_str,',')=0 then 

        pipe row(to_number(v_new_str)); 

        exit; 

      else 

        pipe row(to_number(substr(v_new_str,1,instr(v_new_str,',')-1))); 

        v_new_str:=substr(v_new_str,instr(v_new_str,',')+1); 

      end if; 

    end loop; 

  end if; 

  return; 

end; 

测试: select * from table(get_userid_tab('16,17,18,19,20')); 

结果: 
16 
17 
18 
19 
20 
登入後複製
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板