Difference between JOIN and INNER JOIN

前端 未结 6 1861
离开以前
离开以前 2020-11-22 06:31

Both these joins will give me the same results:

SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK

vs

SELECT *         


        
6条回答
  •  深忆病人
    2020-11-22 07:06

    Does it differ between different SQL implementations?

    Yes, Microsoft Access doesn't allow just join. It requires inner join.

提交回复
热议问题