i have the following sql query:
select d.c3
from table1 a,
table2 b,
table3 e,
table4 d
where a.c1(+) = b.c1 AND d.c1(+) = e.c1 and e.c2 (+) = b.c2
I would like to change the plus operator (+) to a left join or any other join operator.
Any help please?