存储过程执行后不出错,但表中也未插入数据,是何原因?
jjff 2006-06-12 02:19:59 create or replace procedure proc_insert( vjh out char,jls out number)
as
begin
select jh into vjh from dde01;
select count(*) into jls from tszl_tsjcsj;
if (jls=0) then
insert into tszl_tsjcsj(jh) values(vjh);
end if;
end;