I am trying to join multiple tables from an access database. When I join two it works fine, but I need to join 9. Trying to join 3 like so gives the error:
Syntax error (missing operator) in query expression
Here is my command:
OleDbCommand gpInfoCommand = new OleDbCommand("SELECT * FROM GPInformation " +
"LEFT JOIN GPAvailability ON GPInformation.ID=GPAvailability.GPID " +
"LEFT JOIN GPCustomPayRates ON GPInformation.ID=GPCustomPayRates.GPID", connection);