Is there a way to handle left and right outer joins in one shot? Sometimes Table1 has all and Table2 some and sometimes it's the opposite.
Left Outer Join Right Outer Join
Table 1 Table 2 Table 1 Table 2
-----------------------------------------------------
1 1 1 1
2 2 2 2
3 3
Left Outer Join Right Outer Join
Table 1 Table 2 Table 1 Table 2
-----------------------------------------------------
1 1 1 1
2 2 2 2
3 3