the (+) notation is still messy
A well formatted select statement using the "inner join" "left out join" notation is much easier to read and to achieve consistant results with.
A well formatted select statement using the "inner join" "left out join" notation is much easier to read and to achieve consistant results with.
Code:
table_a a
inner join table_b b
on a.col1 = b.col1
and a.col2 = b.col2
inner join table_c c
on a.col1 = c.col1
and a.col2 = c.col2
left outer join table_d d
on d.col1 = a.col3
left outer join table_e e
on b.col3 = e.col1


- I miss oracle so much.
Comment