is there a way to tell ms access (2003) to not put joins into parentheses. or at least to understand them without (every other database does)
i want something like:
SELECT *
FROM a
INNER JOIN b
ON a.a = b.a
INNER JOIN c
ON b.c = c.c
but access tells me that the query is wrong. IT’S NOT, and it’s driving me crazy …
it also puts all joins in a single line—impossible to read
thanks in advance.
ps. i already activated ANSI 92 compatibility/support in settings
ONclauses. In every other major Database Management System, one can write a lengthy sequence ofJOINs, placing theONclauses naturally beside the tables being joined. In Access, the moreJOINs are involved, the more you have to count parentheses to pair up join conditions. Although parentheses are no hindrance to the computer, they can certainly be irritating to human users. – VoteyDisciple Aug 25 '09 at 20:54