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

link

76% accept rate
Have you tried to create a new query? Maybe I just tested something too simple (Left Outer Join on 2 tables.). – Jeff O Aug 25 '09 at 15:48
with ms access 2003? – knittl Aug 25 '09 at 16:01
Yes. I even started it in the graphic design view and switched back-and-forth to SQL text view. They never showed up. – Jeff O Aug 25 '09 at 18:15
Why do you care if there are parentheses in there? – David-W-Fenton Aug 25 '09 at 19:57
2  
The parens force a separation between the tables being joined and the corresponding ON clauses. In every other major Database Management System, one can write a lengthy sequence of JOINs, placing the ON clauses naturally beside the tables being joined. In Access, the more JOINs 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
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

Sadly, no. Access 2003 is just that "dumb" about SQL. It is "wrong" in that Access can only parse one JOIN, which leaves you with the infuriating (but also still correct):

SELECT *
FROM a
INNER JOIN (b INNER JOIN c ON b.c = c.c)
    ON a.a = b.a
link
1  
thanks for your answer, that sucks. i still don’t understand why it needs those dumb parentheses though. to me they are really illogical – knittl Aug 25 '09 at 14:25
Why should anyone give a rat's ass about these parens? – David-W-Fenton Aug 25 '09 at 19:57
David W. Fenton: "Why should anyone [care] about these parens?" From the point of view of a human reading the code, they are unnecessary clutter. From the point of view of a human writing code, you may want to force the optimizer to do the join in an explicit order but the Access Database Engine doesn't let you do this (so yet another way in which it does not comply with SQL-92 even in so-called ANSI-92 Query mode <rolls eyes>). – onedaywhen Sep 2 '09 at 7:25
feedback

See the Access Help About ANSI SQL query mode (MDB).

This mode conforms closely to the ANSI-92 Level 1 specification, but is not ANSI-92 Level 1 compliant.

For "ANSI-92" read "ANSI/ISO SQL-92" (and for "conforms closely to" read "vaguely resembles" ).

Bottom line: you must include the parentheses. Note the Access database engine's optimizer may change the order of the tables as it sees fit.

link
(and for "conforms closely to" read "vaguely resembles" ) <-- <3 – knittl Sep 1 '09 at 13:50
feedback

I just tried SQL Server Compantible Syntax (ANSI 92) and Checked This Database.

I tend to setup all my tables and joins in the graphic query builder and then customize in the SQL editor while working around all the parentheses. The usage of square brackets drives me crazy as well. I'm lucky, most of the apps in my firm are being migrated from Access to SQL Server.

link
1  
yes, me too. all those parens and brackets are driving me nuts. – knittl Aug 25 '09 at 15:44
I certainly agree that if you hate Access and don't want to work by its conventions you should without question stop using it and use something else. But it's your loss. – David-W-Fenton Aug 25 '09 at 19:58
backend is on an ms sql server, frontend is access. why? because customers want it that way – knittl Aug 25 '09 at 22:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.