Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Performance of outer join

Re: Performance of outer join

From: John Higgins <JH33378_at_deere.com>
Date: Fri, 23 Apr 1999 21:56:46 -0500
Message-ID: <372132EE.24ED90AD@deere.com>


The only reason to use an outer join is because when inner join does not give the required answer.

So, if the inner join is quicker but wrong, what have you gained?

Wong Chi Chung wrote:

> Hello,
>
> Is outer join slower than the inner join in Oracle? And Why?
>
> Which one is faster?
> 1
> select b.field1, a.field2
> from table1 a, table2 b
> where a.field1(+) = b.field1
>
> 2
> select b.field1, a.field2
> from table1 a, table2 b
> where a.field1 = b.field1
>
> Thanks
>
> Philip
Received on Fri Apr 23 1999 - 21:56:46 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US