sql - Convert old Oracle outer join syntax (+) to JOIN -


I have a question that used the old (+) syntax for Oracle And now I want to convert it to Access SQL

This is my query:

  BOOKCODE.BOOKCODEID, select BookKode.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 external add syntax (and it long time ), the sign includes the related query

  SELECT BOOKCODE.BOOKCODEID, Bukkod on Bukokod from BOOKCODE.BOOKCODENAME the Application_bookcode LEFT. BOOKCODEID = APPLICATION_BOOKCODE.BOOKCODEID where APPLICATION_BOOKCODE.ApplicationId = 7    

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -