当前位置: 首页 > 编程笔记 >

mysql的左右内连接用法实例

鲁单弓
2023-03-14
本文向大家介绍mysql的左右内连接用法实例,包括了mysql的左右内连接用法实例的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了mysql的左右内连接用法。分享给大家供大家参考。具体如下:

用个例子来解析下mysql的左连接, 右连接和内连接

create table user_id ( id decimal(18) );

create table user_profile ( id decimal(18) , name varchar(255) ) ;

insert into user_id values (1);

insert into user_id values (2);

insert into user_id values (3);

insert into user_id values (4);

insert into user_id values (5);

insert into user_id values (6);

insert into user_id values (1);

insert into user_profile values (1, "aa"); insert into user_profile values (2, "bb"); insert into user_profile values (3, "cc"); insert into user_profile values (4, "dd"); insert into user_profile values (5, "ee"); insert into user_profile values (5, "EE"); insert into user_profile values (8, 'zz');

一. 左连接:

mysql> select a.id id , ifnull(b.name, 'N/A') name from user_id a left join user_profile b on a.id = b.id; 

mysql> select a.id id , ifnull(b.name, 'N/A') name from user_id a left join user_profile b on a.id = b.id;    

+------+------+

| id   | name |

+------+------+

|    1 | aa   |

|    2 | bb   |

|    3 | cc   |

|    4 | dd   |

|    5 | ee   |

|    5 | EE   |

|    6 | N/A  |

|    1 | aa   |

+------+------+

8 rows in set (0.00 sec)

user_id居左,故谓之左连接。 这种情况下,以user_id为主,即user_id中的所有记录均会被列出。分以下三种情况:

1. 对于user_id中的每一条记录对应的id如果在user_profile中也恰好存在而且刚好只有一条,那么就会在返回的结果中形成一条新的记录。如上面1, 2, 3, 4对应的情况。
2. 对于user_id中的每一条记录对应的id如果在user_profile中也恰好存在而且有N条,那么就会在返回的结果中形成N条新的记录。如上面的5对应的情况。
3. 对于user_id中的每一条记录对应的id如果在user_profile中不存在,那么就会在返回的结果中形成一条条新的记录,且该记录的右边全部NULL。如上面的6对应的情况。

不符合上面三条规则的记录不会被列出。

比如, 要查询在一个相关的表中不存在的数据, 通过id关联,要查出user_id表中存在user_profile中不存在的记录:

select count(*) from user_id left join user_profile on user_id.id = user_profile.id where user_profile.id is null;

二. 右连接

user_profile居右,故谓之右连接。 这种情况下, 以user_profile为主,即user_profile的所有记录均会被列出。分以下三种情况:

1. 对于user_profile中的每一条记录对应的id如果在user_id中也恰好存在而且刚好只有一条,那么就会在返回的结果中形成一条新的记录。如上面2, 3, 4, 5对应的情况。
2. 对于user_profile中的每一条记录对应的id如果在user_id中也恰好存在而且有N条,那么就会在返回的结果中形成N条新的记录。如上面的1对应的情况。
3. 对于user_profile中的每一条记录对应的id如果user_id中不存在,那么就会在返回的结果中形成一条条新的记录,且该记录的左边全部NULL。如上面的8对应的情况。

不符合上面三条规则的记录不会被列出。

三. 内连接

MySQL内连接的数据记录中,不会存在字段为NULL的情况。可以简单地认为,内链接的结果就是在左连接或者右连接的结果中剔除存在字段为NULL的记录后所得到的结果, 另外,MySQL不支持full join

mysql> select *  from user_id a inner join user_profile b on a.id = b.id;

+------+------+------+

| id   | id   | name |

+------+------+------+

|    1 |    1 | aa   |

|    1 |    1 | aa   |

|    2 |    2 | bb   |

|    3 |    3 | cc   |

|    4 |    4 | dd   |

|    5 |    5 | ee   |

|    5 |    5 | EE   |

+------+------+------+

7 rows in set (0.00 sec)

mysql> select * from user_id a, user_profile b where a.id = b.id;                    

+------+------+------+

| id   | id   | name |

+------+------+------+

|    1 |    1 | aa   |

|    1 |    1 | aa   |

|    2 |    2 | bb   |

|    3 |    3 | cc   |

|    4 |    4 | dd   |

|    5 |    5 | ee   |

|    5 |    5 | EE   |

+------+------+------+

7 rows in set (0.00 sec)

mysql> select *  from user_id a join user_profile b on a.id = b.id;     

+------+------+------+

| id   | id   | name |

+------+------+------+

|    1 |    1 | aa   |

|    1 |    1 | aa   |

|    2 |    2 | bb   |

|    3 |    3 | cc   |

|    4 |    4 | dd   |

|    5 |    5 | ee   |

|    5 |    5 | EE   |

+------+------+------+

7 rows in set (0.00 sec)

希望本文所述对大家的MySQL程序设计有所帮助。

 类似资料:
  • 内连接,显示两个表中有联系的所有数据; 左链接,以左表为参照,显示所有数据,右表中没有则以null显示 右链接,以右表为参照显示数据,,左表中没有则以null显示

  • 本文向大家介绍MySQL 的内连接、左连接、右连接有什么区别?相关面试题,主要包含被问及MySQL 的内连接、左连接、右连接有什么区别?时的应答技巧和注意事项,需要的朋友参考一下 内连接关键字:inner join;左连接:left join;右连接:right join。 内连接是把匹配的关联数据显示出来;左连接是左边的表全部显示出来,右边的表显示出符合条件的数据;右连接正好相反。

  • 本文向大家介绍MySQL表LEFT JOIN左连接与RIGHT JOIN右连接的实例教程,包括了MySQL表LEFT JOIN左连接与RIGHT JOIN右连接的实例教程的使用技巧和注意事项,需要的朋友参考一下 LEFT JOIN 语法用法与实例 MySQL LEFT JOIN 语法 SQL(MySQL) LEFT JOIN 会取得左表(table1)全部记录,即使右表(table2)并无对应匹配

  • 问题内容: 我已经尝试解决这个问题一段时间了,希望有人能帮助我。我有两个桌子,第一个桌子是 表名:OnlineTest 第二张表是 表名称:UserStatus 结果 我已经试过这个查询, 但是此查询将带出结果的前两行,而不是最后两行,其中userId和status为null。 如何带来以上结果? 问题答案: 将谓词放在子句中: 这将返回的所有行,其中谓词失败的列填充为。

  • 本文向大家介绍说下左连接和右连接相关面试题,主要包含被问及说下左连接和右连接时的应答技巧和注意事项,需要的朋友参考一下 比如有两张表 A,B。左连接是把符合条件的所有A表的内容列出来,B表如果没有内容匹配用NULL代替。 右连接是符合条件的所有B表的内容列出来,A表如果没有内容匹配用NULL代替

  • 本文向大家介绍简单谈谈mysql左连接内连接,包括了简单谈谈mysql左连接内连接的使用技巧和注意事项,需要的朋友参考一下 前言 最近忙着开发x省冷链追溯系统,天天干到晚上十一点多才回到家,周末也加班,没啥时间写博客,闲下来再好好写写 业务: sql语句统计出入库数据。 问题: 只统计了X端入库单。 原因: 没有发现X端的数据库中只有入库单是有a字段数据而出库单是没有的,并使用了a字段去inner