Got a question here...Is it possible to use an outer join on three tables. I'm trying to do this w/ the following statements in Access 97, but it won't work:
SELECT *
FROM Customer A Left Join Orders B On (A.[Customer Id] = B.[Customer Id]) Left Join [Orders Detail] C
ON (B.[Order ID] = C.[Order ID]);
BigFuzzyDog