Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: outer join
Use inline views:
Select *
from ( select *
from table1 , table2 where <put here outer join predicates>) view1 , table3where
Waleed
-----Original Message-----
Sent: Thursday, March 14, 2002 6:33 AM
To: Multiple recipients of list ORACLE-L
Hi,
Please can anyone let me know on how to deal with the problem where you
want to outer join a table to more than 1 tables, at the moment i get error
,
ORA-01417: a table may be outer joined to at most one other table. Is there
another way the results can be achieved?
cheers
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
INET: iashraf_at_csc.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Mar 14 2002 - 08:38:32 CST