What is the difference between Left, Right, Outer and Inner Joins?

后端 未结 9 1848
刺人心
刺人心 2020-11-22 07:10

I am wondering how to differentiate all these different joins ...

9条回答
  •  孤城傲影
    2020-11-22 07:55

    LEFT JOIN and RIGHT JOIN are types of OUTER JOINs.

    INNER JOIN is the default -- rows from both tables must match the join condition.

提交回复
热议问题