17,382
社区成员




merge into 解决问题
begin
for rec in (select * from b) loop
begin
insert into a(slcct,sla,res,area)
values (seq_slcct.nextval, rec.sla, rec.res, rec.area);
exception
when others then null;
end;
end loop;
end;