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

Home -> Community -> Usenet -> c.d.o.misc -> Different syntax for LEFT JOIN

Different syntax for LEFT JOIN

From: Ruslan Kogan <ruslan00_at_yahoo.com>
Date: 21 Nov 2004 22:11:51 -0800
Message-ID: <d562b81c.0411212211.1893a476@posting.google.com>


hi,

I am just wondering if there is a difference in the following two syntaxes:

SELECT *
FROM TableA
LEFT JOIN TableB ON
TableA.id = TableB.id

SELECT *
FROM TableA, TableB
WHERE
TableA.id(+) = TableB.id

is this correct? I am a little confused about where to position the '(+)'.

Thanks heaps!!! Received on Mon Nov 22 2004 - 00:11:51 CST

Original text of this message

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