MySQL在右表数据不唯一的情况下使用left join的方法
作者:傲雪星枫
1.left join 基本用法
mysql left join 语句格式
A LEFT JOIN B ON 条件表达式
left join 是以A表为基础,A表即左表,B表即右表。
左表(A)的记录会全部显示,而右表(B)只会显示符合条件表达式的记录,如果在右表(B)中没有符合条件的记录,则记录不足的地方为NULL。
例如:news 与 news_category表的结构如下,news表的category_id与news_category表的id是对应关系。
news 表
news_category 表
显示news表记录,并显示news的category名称,查询语句如下
select a.id,a.title,b.name as category_name,a.content,a.addtime,a.lastmodify from news as a left join news_category as b on a.category_id = b.id;
查询结果如下:
因 news_category 表没有id=4的记录,因此news 表中category_id=4的记录的category_name=NULL
使用left join, A表与B表所显示的记录数为 1:1 或 1:0,A表的所有记录都会显示,B表只显示符合条件的记录。
2.left join 右表数据不唯一解决方法
但如果B表符合条件的记录数大于1条,就会出现1:n的情况,这样left join后的结果,记录数会多于A表的记录数。
例如:member与member_login_log表的结构如下,member记录会员信息,member_login_log记录会员每日的登入记录。member表的id与member_login_log表的uid是对应关系。
member 表
member_login_log 表
查询member用户的资料及最后登入日期:
如果直接使用left join
select a.id, a.username, b.logindate from member as a left join member_login_log as b on a.id = b.uid;
因member_login_log符合条件的记录比member表多(a.id = b.uid),所以最后得出的记录为:
但这并不是我们要的结果,因此这种情况需要保证B表的符合条件的记录是空或唯一,我们可以使用group by来实现。
select a.id, a.username, b.logindate from member as a left join (select uid, max(logindate) as logindate from member_login_log group by uid) as b on a.id = b.uid;
总结:使用left join的两个表,最好是1:1 或 1:0的关系,这样可以保证A表的记录全部显示,B表显示符合条件的记录。
如果B表符合条件的记录不唯一,就需要检查表设计是否合理了。
您可能感兴趣的文章:
- 图文详解Mysql使用left join写查询语句执行很慢问题的解决
- mysql使用left join连接出现重复问题的记录
- MySQL中多个left join on关联条件的顺序说明
- 关于mysql left join 查询慢时间长的踩坑总结
- MYSQL Left Join优化(10秒优化到20毫秒内)
- 解决Mysql的left join无效及使用的注意事项说明
- mysql left join快速转inner join的过程
- mysql高效查询left join和group by(加索引)
- 详解mysql 使用left join添加where条件的问题分析
- mysql中left join设置条件在on与where时的用法区别分析
- MySQL 8.0.18 Hash Join不支持left/right join左右连接问题
- MySQL left join操作中on和where放置条件的区别介绍
- mysql多个left join连接查询用法分析
- MySQL利用profile分析慢sql详解(group left join效率高于子查询)
- MySQL表LEFT JOIN左连接与RIGHT JOIN右连接的实例教程
- mysql left join的基本用法以及on与where的区别