Dale,
Could you explain further.
I've never seen Access add the parentheses is SQL View.
As a matter of fact if I don't add the parentheses in the FROM clause of a
multi-table (3 or more) query, the query fails with a syntax error.
I know that Access will add unneeded parentheses in the WHERE clause and
other places, but it requires that the parens be there in the JOIN clause
and you must add them in the SQL view if you construct the SQL there.
This errors no matter what I do
SELECT *
FROM FAQ INNER JOIN FAQ1 ON FAQ.fID = FAQ1.fID
INNER JOIN FAQ2 ON FAQ1.fID = FAQ2.fID;
This works
SELECT *
FROM (FAQ INNER JOIN FAQ1 ON FAQ.fID = FAQ1.fID)
INNER JOIN FAQ2 ON FAQ1.fID = FAQ2.fID;
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..