mysqlleftjoin右表数据不唯⼀的情况解决⽅法
转⾃blog.csdn/fdipzone/article/details/45119551
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 表
id title category_id content addtime lastmodify
1fashion news title1fashion news content2015-01-01 12:00:002015-01-01 12:00:00 2sport news title2sport news content2015-01-01 12:00:002015-01-01 12:00:00 3life news title3life news content2015-01-01 12:00:002015-01-01 12:00:00 4game news title4game news content2015-01-01 12:00:002015-01-01 12:00:00
news_category 表
id name
1fashion
2sport
3life
显⽰news表记录,并显⽰news的category名称,查询语句如下
[sql]
1. select a.id,a.title,b.name as category_t,a.addtime,a.lastmodify
2. from news as a left join news_category as b
3. on a.category_id = b.id;
查询结果如下:
id title category_name content addtime lastmodify
1fashion news title fashion fashion news content2015-01-01 12:00:002015-01-01 12:00:00
2sport news title sport sport news content2015-01-01 12:00:002015-01-01 12:00:00
多表left join
3life news title life life news content2015-01-01 12:00:002015-01-01 12:00:00
4game news title NULL game news content2015-01-01 12:00:002015-01-01 12:00:00
因 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 表
id username
1fdipzone
2terry
member_login_log 表
id uid logindate
112015-01-01
222015-01-01
312015-01-02
422015-01-02
522015-01-03
查询member⽤户的资料及最后登⼊⽇期:
如果直接使⽤left join
[sql]
1. select a.id, a.username, b.logindate
2. from member as a
3. left join member_login_log as b on a.id = b.uid;
因member_login_log符合条件的记录⽐member表多(a.id = b.uid),所以最后得出的记录为:
id username logindate
1fdipzone2015-01-01
1fdipzone2015-01-02
2terry2015-01-01
2terry2015-01-02
2terry2015-01-03
但这并不是我们要的结果,因此这种情况需要保证B表的符合条件的记录是空或唯⼀,我们可以使⽤group by来实现。[sql]
1. select a.id, a.username, b.logindate
2. from member as a
3. left join (select uid, max(logindate) as logindate from member_login_log group by uid) as b
4. on a.id = b.uid;
id username logindate
1fdipzone2015-01-02
2terry2015-01-03
总结:使⽤left join的两个表,最好是1:1 或 1:0的关系,这样可以保证A表的记录全部显⽰,B表显⽰符合条件的记录。如果B表符合条件的记录不唯⼀,就需要检查表设计是否合理了。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。