I have a query that was written for Oracle using the old (+)
syntax and now I want to convert it to Access SQL.
Here is my query:
select BO
If I remember the old Oracle outer join syntax (and it's been a long time), the corresponding query in Access should be
SELECT
BOOKCODE.BOOKCODEID,
BOOKCODE.BOOKCODENAME
FROM
Application_bookcode
LEFT JOIN
BookCode
ON BOOKCODE.BOOKCODEID = APPLICATION_BOOKCODE.BOOKCODEID
WHERE
APPLICATION_BOOKCODE.ApplicationId = 7