mysql中内连接,左连接和右连接的区别
短信预约 -IT技能 免费直播动态提醒
mysql 中内连接、左连接和右连接的区别在于:内连接只返回同时在两个表中匹配的行,而左连接返回左表所有行,包含匹配右表行,右连接返回右表所有行,包含匹配左表行。内连接语法:select * from table1 inner join table2 on table1.column1 = table2.column2;左连接语法:select * from table1 left join table2 on table1.column1 = table2.column2;右连接语法:sele
MySQL 中内连接、左连接和右连接的区别
内连接 (INNER JOIN)
- 只返回两个表中具有匹配行的记录。
- 匹配失败的记录将被丢弃。
左连接 (LEFT JOIN)
- 返回左表中的所有记录,即使右表中没有匹配的行。
- 右表中没有匹配行的记录将用 NULL 值填充。
右连接 (RIGHT JOIN)
- 返回右表中的所有记录,即使左表中没有匹配的行。
- 左表中没有匹配行的记录将用 NULL 值填充。
用法
- 内连接:用于查找两个表之间具有匹配行的记录,并丢弃不匹配的记录。
- 左连接:用于查找左表的所有记录,并包含右表中匹配行的记录。
- 右连接:用于查找右表的所有记录,并包含左表中匹配行的记录。
语法
-
内连接:
<code class="sql">SELECT * FROM table1 INNER JOIN table2 ON table1.column1 = table2.column2;</code>
-
左连接:
<code class="sql">SELECT * FROM table1 LEFT JOIN table2 ON table1.column1 = table2.column2;</code>
-
右连接:
<code class="sql">SELECT * FROM table1 RIGHT JOIN table2 ON table1.column1 = table2.column2;</code>
例子
假设我们有以下两个表:
<code>Table1:
| id | name |
|---|---|
| 1 | John |
| 2 | Mary |
| 3 | Bob |
Table2:
| id | address |
|---|---|
| 1 | 123 Main St |
| 2 | 456 Elm St |
| 4 | 789 Oak St |</code>
-
内连接:
<code class="sql">SELECT * FROM Table1 INNER JOIN Table2 ON Table1.id = Table2.id;</code>
结果:
id | name | address |
---|---|---|
1 | John | 123 Main St |
2 | Mary | 456 Elm St |
-
左连接:
<code class="sql">SELECT * FROM Table1 LEFT JOIN Table2 ON Table1.id = Table2.id;</code>
结果:
id | name | address |
---|---|---|
1 | John | 123 Main St |
2 | Mary | 456 Elm St |
3 | Bob | NULL |
-
右连接:
<code class="sql">SELECT * FROM Table1 RIGHT JOIN Table2 ON Table1.id = Table2.id;</code>
结果:
id | name | address |
---|---|---|
1 | John | 123 Main St |
2 | Mary | 456 Elm St |
4 | NULL | 789 Oak St |
以上就是mysql中内连接,左连接和右连接的区别的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341