I am trying to recall how to perform an outer join via the Where clause. I am modifying another's code and they have opted to use the Where clause everywhere to establish links as opposed to using the LEFT/RIGHT JOINs... It may be a big effort to re-write/Test all of the SQL. I only need to modify a few, but time is short!
I recall something like -
Select a.field1, b.field2
From Tab1 a, Tab2 b
Where a.Field1=(+)b.Field1;
Where I wish to display all records from Tab1 regardless if there is a match in Tab2.
But, it does not seem to work.... Perhaps that was under Oracle SQL. Any ideas on this old SQL Level stuff would be helpful! Thanks! Steve
I recall something like -
Select a.field1, b.field2
From Tab1 a, Tab2 b
Where a.Field1=(+)b.Field1;
Where I wish to display all records from Tab1 regardless if there is a match in Tab2.
But, it does not seem to work.... Perhaps that was under Oracle SQL. Any ideas on this old SQL Level stuff would be helpful! Thanks! Steve