INNER JOIN、LEFT JOIN、RIGHT JOIN 和 FULL JOIN 有什么区别?
INNER JOIN
、LEFT JOIN
、RIGHT JOIN
和 FULL JOIN
之间有什么区别 在 MySQL 中?
What's the difference between INNER JOIN
, LEFT JOIN
, RIGHT JOIN
and FULL JOIN
in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQL 中有不同类型的联接可用:
INNER JOIN:当两个表中存在匹配项时返回行。
LEFT JOIN:返回左表中的所有行,即使右表中没有匹配项。
RIGHT JOIN:返回右表中的所有行,即使左表中没有匹配项。
FULL JOIN:合并左外连接和右外连接的结果。
连接的表将包含两个表中的所有记录,并为两侧缺失的匹配项填充 NULL。
SELF JOIN:将一个表与其自身连接起来,就好像该表是两个表一样,在 SQL 语句中临时重命名至少一个表。
CARTESIAN JOIN:返回两个或多个连接表中记录集的笛卡尔积。
我们可以在详细信息中分别采用前四个连接:
我们有两个具有以下值的表。
表A
表B
................................ ................................
内连接
注释 :给出两个表的交集,即 TableA 和 TableB 共有的行。
语法
将其应用到我们的示例表中:
结果
LEFT JOIN
注意:给出 TableA 中的所有选定行,以及 TableB 中的任何常见选定行。
语法
将其应用到我们的示例表中:
结果
RIGHT JOIN
注意:给出 TableB 中的所有选定行,以及 TableA 中的任何常见选定行。
语法
将其应用到我们的示例表中:
结果
FULL JOIN
注意:返回两个表中的所有选定值。
语法
将其应用到我们的示例表中:
结果
有趣的事实
最好去检查一下这个链接将为您提供有关加入顺序的有趣详细信息。
There are different types of joins available in SQL:
INNER JOIN: returns rows when there is a match in both tables.
LEFT JOIN: returns all rows from the left table, even if there are no matches in the right table.
RIGHT JOIN: returns all rows from the right table, even if there are no matches in the left table.
FULL JOIN: combines the results of both left and right outer joins.
The joined table will contain all records from both the tables and fill in NULLs for missing matches on either side.
SELF JOIN: joins a table to itself as if the table were two tables, temporarily renaming at least one table in the SQL statement.
CARTESIAN JOIN: returns the Cartesian product of the sets of records from the two or more joined tables.
We can take each first four joins in Details :
We have two tables with the following values.
TableA
TableB
....................................................................
INNER JOIN
Note : gives the intersection of the two tables, i.e. rows TableA and TableB have in common.
Syntax
Apply it in our sample table :
Result
LEFT JOIN
Note : gives all selected rows in TableA, plus any common selected rows in TableB.
Syntax
Apply it in our sample table :
Result
RIGHT JOIN
Note : gives all selected rows in TableB, plus any common selected rows in TableA.
Syntax
Apply it in our sample table :
Result
FULL JOIN
Note : returns all selected values from both tables.
Syntax
Apply it in our sample table :
Result
Interesting Fact
Better to go check this Link it will give you interesting details about join order.
INNER JOIN 根据提供的 ON 子句获取两个表之间共有的所有记录。
LEFT JOIN 获取左链接中的所有记录以及右表中的相关记录,但如果您从右表中选择了某些列,如果没有相关记录,这些列将包含 NULL。
RIGHT JOIN 与上面类似,但获取 RIGHT 表中的所有记录。
FULL JOIN 获取两个表中的所有记录,并将 NULL 放入相对表中不存在相关记录的列中。
INNER JOIN gets all records that are common between both tables based on the supplied ON clause.
LEFT JOIN gets all records from the LEFT linked and the related record from the right table ,but if you have selected some columns from the RIGHT table, if there is no related records, these columns will contain NULL.
RIGHT JOIN is like the above but gets all records in the RIGHT table.
FULL JOIN gets all records from both tables and puts NULL in the columns where related records do not exist in the opposite table.