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 -> Re: Please help with outer join....

Re: Please help with outer join....

From: Ken Denny <kendenny_at_bnr.ca>
Date: 1997/10/23
Message-ID: <344F9ADD.77E6@bnr.ca>#1/1

Hello Shayne,

Put (+) beside the table entry which may not exist,

 SELECT * FROM CUSTOMERS,FILES,FILEDETAILS,USERS     WHERE CUSTOMERS.CUSTOMERID = FILEDETAILS.CUSTOMERID AND

          FILEDETAILS.FILEID = FILES.FIEID AND
          FILES.OUTBYUSERID = USERS.USERID(+) AND
          FILES.FILEID = 3;

This should work.

Hope this helps
Ken Denny
kendenny_at_bnr.ca (work)
kdenny_at_interpath.com (home) Received on Thu Oct 23 1997 - 00:00:00 CDT

Original text of this message

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