Skip to content
Advertisement

syntax error (missing operator) in query expression – VBA and Access

I build a query with this syntax:

I did a test query in MariaDB, and it worked.

Now, i am use this query in Access with VBA MSExcel, where it has the same structure and relationship between tables, but return error.

message error vba:

Syntax error (missing operator) in expression ‘t.id_empresa = e.id_empresa LEFT JOIN responsavel AS r ON t.id_respons’

This is my code vba MSExcel:

Where am I missing?

Advertisement

Answer

No two SQL dialects are exactly the same for exact transferability. Simply, MariaDB’s SQL will not perfectly align to MS Access’ SQL similar to running same query from Oracle to Postgres, MySQL to SQL Server, Sybase to DB2… There will need to be some translation.

Specifically:

  • DATE_FORMAT is not an available function in MS Access. Instead use FORMAT with appropriate format pattern which does not use %.

  • More than one JOIN require parentheses wrapping in MS Access. However, your mix of RIGHT JOIN and LEFT JOIN may require nested joining.

    (Admittedly, this is a frustrating requirement for new Access users to build complex queries with Query Designer and not SQL. I raised this suggested change among others to Access’ SQL dialect.)

  • Fortunately, backticks are supported in MS Access though square brackets, [...], are the more popular form to escape identifiers with special characters or keywords.

Consider following adjustment:

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