In oracle you can do an outer join by adding a (+) to the field that is not required to have a value. How do you do the same in MS SQL.
Here is an example where clause in oracle that would work:
Where table1.record_id = table2.record_id
and table1.foriegn_key = table3.record_id (+)
Thanks in advance
Blair
Here is an example where clause in oracle that would work:
Where table1.record_id = table2.record_id
and table1.foriegn_key = table3.record_id (+)
Thanks in advance
Blair