Convert old Oracle outer join syntax (+) to JOIN

前端 未结 1 1969
暖寄归人
暖寄归人 2021-01-25 06:05

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         


        
相关标签:
1条回答
  • 2021-01-25 06:26

    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
    
    0 讨论(0)
提交回复
热议问题