Hi,
Is there any particular reason related to syntax that would prevent an outer join from executing correctly? I have several tables in my FROM clause, but only two are outer joined. My recordset, however, is restricted only to those records where the joined fields are equal. I can post my particular SQL if necessary, but it's basically like so:
SELECT field1, field2, etc.
FROM table1, table2, table3, table4
WHERE table1.field1 = table2.field1
AND table1.field2 (+) = table3.field1
etc.
where I want to force null fields for my table3 field, even though its primary key may not equal that of table1. This may be more confusing that not, but I'm convinced that I'm missing something fundamental.
Thanks all,
Shaun
Is there any particular reason related to syntax that would prevent an outer join from executing correctly? I have several tables in my FROM clause, but only two are outer joined. My recordset, however, is restricted only to those records where the joined fields are equal. I can post my particular SQL if necessary, but it's basically like so:
SELECT field1, field2, etc.
FROM table1, table2, table3, table4
WHERE table1.field1 = table2.field1
AND table1.field2 (+) = table3.field1
etc.
where I want to force null fields for my table3 field, even though its primary key may not equal that of table1. This may be more confusing that not, but I'm convinced that I'm missing something fundamental.
Thanks all,
Shaun