Convert old Oracle outer join syntax (+) to JOIN
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 BOOKCODE.BOOKCODEID,BOOKCODE.BOOKCODENAME from Application_bookcode, BookCode where BOOKCODE.BOOKCODEID (+) = HMISUnitTest.APPLICATION_BOOKCODE.BOOKCODEID and HMISUnitTest.APPLICATION_BOOKCODE.ApplicationId = 7 What is the equivalent in Access SQL? 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