mysql 7种JOIN理论,看完你就懂了

Posted 信念0118

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 7种JOIN理论,看完你就懂了相关的知识,希望对你有一定的参考价值。

select * from tbl_emp a inner join tbl_dept b on a.deptId=b.id;

select * from tbl_emp a LEFT JOIN tbl_dept b on a.deptId=b.id;

select * from tbl_emp a RIGHT JOIN tbl_dept b on a.deptId=b.id;

select * from tbl_emp a LEFT JOIN tbl_dept b on a.deptId=b.id where b.id is null;

select * from tbl_emp a RIGHT JOIN tbl_dept b on a.deptId=b.id where a.id is null;

select * from tbl_emp a LEFT JOIN tbl_dept b on a.deptId=b.id union select * from tbl_emp a RIGHT JOIN tbl_dept b on a.deptId=b.id;

select * from tbl_emp a LEFT JOIN tbl_dept b on a.deptId=b.id where b.id is null union  select * from tbl_emp a RIGHT JOIN tbl_dept b on a.deptId=b.id where a.id is null;

以上是关于mysql 7种JOIN理论,看完你就懂了的主要内容,如果未能解决你的问题,请参考以下文章

大型分布式存储方案MinIO介绍,看完你就懂了!

架构知识:23 种设计模式的通俗解释,看完你就懂了!

深度分析!面试99%被问到的多线程和并发篇,看完你就懂了

华为软件测试二面:adb 连接 Android 手机的两种方式,看完你就懂了

上班族适合大自考还是小自考?看完你就懂了

如何使用Sentinel实现服务熔断和降级,看完你就懂了