Skip to content
Advertisement

Multiple LEFT JOIN in Access

I have the following query, which works for MySQL:

But it doesn’t work for MS Access. I’ve tried to add parentheses around the LEFT JOIN, but it gives me syntax error in FROM clause. So how should this query look in order to work in MS Access?

Advertisement

Answer

The Access DELETE requires a star (*): DELETE * FROM ...

In addition, the joins must be nested by using parentheses:

This is specific to Access (Jet) SQL.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement