Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Oracle SQL Condition Question...
To improve the processing time use the following query
insert into tab3
select f1 from tab1
minus
select f2 from tab2
I am pretty sure this will give the same results and will run in a substantially smaller time.
Ajay
akulkar_at_ifu.net
> > I have 2 tables
tab1 tab2
> > ==== ====
.. .. .. ..> >
> > f1 f2
> > .. ..
> > .. ..
![]() |
![]() |