I've 3 tables in total, namely table1, table2 & 3.
Data in table2 & 3 are quite huge, so I wanna outer join table2 & 3 based on the keys e.g. member no & id no first before joining table1.
SELECT
A.field1,
A.field2,
A.field3,
A.field20,
B.specialfield1, B.specialfield2,
C.specialfield7, B.specialfield8
FROM (table1 AS A LEFT JOIN table2 AS B
ON (A.field1 = B.field1)
AND (A.field2 = B.field2)
AND (A.field3 = B.field3))
LEFT JOIN table3 AS C
ON (A.field1 = C.field1)
AND (A.field2 = C.field2)
AND (A.field3 = C.field3))
What can I do? I m using Access97 and seems syntax I knew from SQL server may not work right there. Thanks in advance!!
Cheers VB