Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Better way?
<y1799_at_yahoo.com> wrote in message
news:1107183275.368691.70610_at_f14g2000cwb.googlegroups.com...
> Hi ,
>
> my query does not work bad for the small tables but maybe exists
> something more productive:
> select F1 from A
> where F1 not in (select F1 from B)
>
> Thanks
>
SELECT f1 FROM a
MINUS
SELECT f1 FROM b
Received on Mon Jan 31 2005 - 08:57:56 CST
![]() |
![]() |