oracle plsql之如何把以逗號,分隔的字串分割成多個子字元

wisdomone1發表於2012-11-04
create or replace procedure p_separate(in_org_list in varchar2)
is
v_sql varchar2(3000);
v_new_pos integer;
v_new_sql varchar2(3000);
v_flag integer;
begin
  v_sql:=in_org_list;
  --分幾種情況:
  --1,僅一個公司
  --2,多個公司,但以逗號分隔
  --表明至少有>=2個公司
  v_new_sql:='';
  -- a,b,c
  if instr(v_sql,',',1)>0 then
     
    while(instr(v_sql,',',1)>0) loop
     v_new_sql:=v_new_sql||''''||substr(v_sql,1,instr(v_sql,',',1)-1)||''''||',';
     v_new_pos:=instr(v_sql,',',v_pos)+1;
     v_sql:=substr(v_sql,v_new_pos);
    end loop;
    v_flag:=1;
  else
    --表明僅一個公司
    v_new_sql:=''''||v_sql||'''';
    v_flag:=0;
  end if;
  
  if v_flag=0 then
    null;
  else
    v_new_sql:=v_new_sql||''''||v_sql||''''; 
  end if;
end p_separate;

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

相關文章