I have three tables as follows:
table 1 table 2 table 3
------- ------- -------
a a a
b c c
c f
d
e
f
I want to join this three tables into 1 which will result to the following:
result table
------------
a a a
b
c c c
d
e
f f
Noticed that the second and third col contains blank row if it does not have a match. How can I achieve this using oracle sql?