SELECT CommitTime
FROM Logs
(INNER JOIN SecurityOptions
ON SecurityOptions.Name=Logs.SecurityOption)
WHERE SecurityOption.ID=22
This is the sql string I use to grab data from the DB and the ODBC Bridge gives me the next error [Microsoft][ODBC Microsoft Access Driver] Syntax error in FROM clause.
And if it doesn't give me this error it gives me that INNER JOIN isn't supported and sometimes Syntax Error
Am I doing something wrong?