Mysql

关注公众号 jb51net

关闭
首页 > 数据库 > Mysql > mysql join和where优先级顺序

mysql中的join和where优先级顺序解读

作者:所谓永恒

这篇文章主要介绍了mysql中的join和where优先级顺序解读,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

mysql 的 join 和 where 优先级

定义

join功能

where

where 是 mysql 语句的查询条件

测试数据表

xy
110
220
330
xy
10100
20200
20300
create table if not exists `a1`(
    `x` int(10),
    `y` int(10)
);

create table if not exists `a2`(
    `y` int(10),
    `z` int(10)
)

查询 sql 及结果

正常左连接

select * from a1 left join a2 on a1.y = a2.y;
xyyz
11010100
22020200
22020300
330NULLNULL

左连情况下, 由于左边a1.y = 30在右表无数据所以右表数据 (y,z)为 NULL

左连 on && and

select * from a1 left join a2 on a1.y = a2.y and a2.y = 10;
xyyz
11010100
220NULLNULL
330NULLNULL

由于是左连, 所以判断 (a1.y = a2.y && a2.y = 10) 只能筛选出(10, 100)与左边匹配, 所以后面均为 NULL.

即实际优先级是

select * from (a1 left join a2 on a1.y = a2.y and a2.y = 10)

左连 on && where

select * from a1 left join a2 on a1.y = a2.y where a2.y = 10;
xyyz
11010100

只有一条数据, 因此可判断其优先级为

select * from (a1 left join a2 on a1.y = a2.y) where a2.y = 10​​​​​​​

也就是说 会先左连生成临时表, 然后再在整体表上进行 where 查询.

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文