先看下这篇文章:
是w3schools英文版的连接,他对left join的解释是:
The LEFT JOIN keyword returns all rows from the left table (table1), with the matching rows in the right table (table2). The result is NULL in the right side when there is no match.
翻译成中文:左连接关键字返回从左表中返回所有的行,还会将和右表匹配的行也一起返回,当右表没有匹配数据时返回null
从下图可以看出结果,左表内容全部返回,右表和左表并集的地方也返回。
理论基础,必须掌握