作者:cindy翻不清的旧伟_334 | 来源:互联网 | 2014-07-13 17:52
Oracle隐式游标简析createorreplaceprocedure隐式游标asflagCHAR:'U';beginifSQL%foundthenupdatetable3setTANAME'问问'wheretaid1;commit;flag:...
create or replace procedure 隐式游标 as
flag CHAR := 'U' ;
begin
if SQL%found then
update table3 set TANAME='问问' where taid=1;
commit;
flag :='I';
insert into table3(taid,taname,bqid) values(4,'人事部',2);
commit; www.2cto.com
end if;
if flag ='U' then
dbms_output.put_line('表已更新');
ELSE
dbms_output.put_line('记录已插入');
end if;
end 隐式游标;
作者 勇往直前102002