日期:2014-05-17 浏览次数:21225 次
create or replace procedure P_Task_order
IS
Begin
insert into REPORT(a,b,c,d,e,f,g,h,i,j,k,
l,m,n,o,p,q,r,s)
select * from t1, t2, t3 where t1.a =1 and t1.b = t2.b(+)
and t2.c = t3.c;
commit;
exception
when others then
rollback;
End;
select * from t1, t2, t3 where t1.a =1 and t1.b = t2.b(+)
and t2.c = t3.c;
--这段SELECT结果集,是不是有问题?