1.創(chuàng)建臨時表
-- Create table
create table CRTST.TEMP_POINTS_IDS
(
ids NUMBER
);
-- Add comments to the table
comment on table CRTST.TEMP_POINTS_IDS
is '臨時表';
2.分割之后,存入臨時表
--in_pid為入?yún)⒆兞?格式為用逗號拼接而成的字符串
--切割之后,存入臨時表中
insert into TEMP_POINTS_IDS (ids)
SELECT REGEXP_SUBSTR(in_pid, '[^,]+', 1, rownum)
FROM DUAL
CONNECT BY rownum <= (length(in_pid) - LENGTH(REPLACE(in_pid, ',', '')) + 1);
3.在存儲過程中,清空臨時表中的數(shù)據(jù)
--清空臨時表中的數(shù)據(jù)
execute immediate 'truncate table TEMP_POINTS_IDS';
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者