我想问下大家如何在oracle中创建个存储过程,可以插入或更新多个表里的多条记录呢??
------解决方案--------------------
代码迷推荐解决方案:oracle存储过程,http://www.daimami.com/search?q=177537
------解决方案--------------------
create or replace procedure p
as
begin
insert into ^^^^;
update tab set col=^^^^^^^^^;
commit;
end;
end p;