日期:2014-05-17  浏览次数:20992 次

关于oracle中存储过程的问题??
我想问下大家如何在oracle中创建个存储过程,可以插入或更新多个表里的多条记录呢??

------解决方案--------------------
我的异常网推荐解决方案:oracle存储过程,http://www.aiyiweb.com/oracle-develop/177537.html
------解决方案--------------------
create or replace procedure p
as
begin
insert into ^^^^;
update tab set col=^^^^^^^^^;
commit;
end;
end p;