up vote 1 down vote favorite
share [g+] share [fb]

How to rewrite this:

select tab1.id, tab2.id, tab3.id 
from tab1, tab2, tab3 
where tab1.col1 = tab2.col1(+) and tab2.col2 = tab3.col2(+);

using OUTER JOIN syntax?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted
select tab1.id, tab2.id, tab3.id 
from tab1
left outer join tab2 on tab1.col1 = tab2.col1
left outer join tab3 on tab2.col2 = tab3.col2;
link|improve this answer
Thanks, I was not able to find such example in Oracle's SQL Reference :) – Igor Drincic Nov 28 '08 at 14:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.