服务器之家

服务器之家 > 正文

mysql中left join设置条件在on与where时的用法区别分析

时间:2021-01-07 17:08     来源/作者:怀素真

本文实例讲述了mysql中left join设置条件在on与where时的用法区别。分享给大家供大家参考,具体如下:

一、首先我们准备两张表来进行测试。

?
1
2
3
4
5
6
7
8
9
10
11
12
create table `a` (
 `id` int(11) unsigned not null auto_increment comment 'id',
 `name` varchar(32) default '' comment '名称',
 primary key (`id`)
) engine=innodb default charset=utf8;
 
create table `b` (
 `id` int(11) unsigned not null auto_increment comment 'id',
 `a_id` int(11) default '0' comment 'a表id',
 `name` varchar(32) default '' comment '名称',
 primary key (`id`)
) engine=innodb default charset=utf8;

两个表的数据如图所示:

mysql中left join设置条件在on与where时的用法区别分析

运行下面左连接查询:

?
1
select * from a left join b on a.id = b.a_id;

mysql中left join设置条件在on与where时的用法区别分析

我们分别在on和where后面加上条件,看看执行结果是否相同。

?
1
select * from a left join b on a.id = b.a_id and b.id > 3;

mysql中left join设置条件在on与where时的用法区别分析

?
1
select * from a left join b on a.id = b.a_id where b.id > 3;

mysql中left join设置条件在on与where时的用法区别分析

上面的两条语句,条件我们设置的是一样的都是b.id > 3,为什么显示结果不同。

sql语句查询的关键字顺序一般为 from > where > group by > having > order by

left join 在 from范围,on 条件会先对 left join 的右表进行筛选,筛选完后的结果 where 再进行筛选。

多个 left join 会生成一张临时表,on 条件是对 left join 右表进行条件过滤,where 条件针对最后生成的临时表进行过滤。

所以:

b.id > 3 的条件如果写在 on 后面,则是先对右边表(关联表)进行筛选,得出符合条件的行,然后主表 left join ,返回主表所有的行,右边表没匹配上的用 null 表示。

b.id > 3 的条件如果写在 where 后面,则是先主表 left join 右边表(关联表),返回所有的行,然后 where 条件再对结果进行筛选。

注意:on 后面的条件是针对右边的表(关联表),对主表没什么作用。

?
1
select * from a left join b on a.id = b.a_id and a.id > 3;

mysql中left join设置条件在on与where时的用法区别分析

我们在on 后面添加了对主表的条件 a.id > 3,不过主表的数据仍然全部显示出来了,但是影响了右边表(关联表)的显示。

如果想要对主表进行筛选,应该把条件写在where后。

?
1
select * from a left join b on a.id = b.a_id where a.id > 3;

mysql中left join设置条件在on与where时的用法区别分析

希望本文所述对大家MySQL数据库计有所帮助。

原文链接:https://www.cnblogs.com/jkko123/p/10148927.html

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部