日期:2014-05-17 浏览次数:20951 次
procedure buildSendReport(
tel_str in clob ,
userId in long ,
telNums in long ,
message in varchar2,
totalNums out number
)
as
begin
end buildSendReport ;
select c from(
with test as (select '13589647512,13589647513,13589647514,13589647515' c from dual)
select regexp_substr(t.ca,'[^,]+',1,lv) AS c
from (select c AS ca,length(c || ',') - nvl(length(REPLACE(c, ',')), 0) AS cnt FROM test) t,
(select LEVEL lv from dual CONNECT BY LEVEL <= 100) c where c.lv <= t.cnt)