I have Oracle sql code that uses the old and not recommended (+) notation. I have a basic understanding of how to convert but am struggling with multiple tables.
For exmaple
select [list of columns]
from table1 t1,
table2 t2,
table3 t3,
table4 t4,
table5 t5
where t2.col1 = t1.col1
and t2.col2 = t3.col2
and t4.col1(+) = t2.col3
and t5.col1(+) = t2.col4
and t5.col2(+) = t2.col5
Hope this makes sense. I believe this is slightly different from other similar questions as they did not cover multiple joins in the same query