select a.id,score from (select id,age from stu where age < 20) a (过滤左表信息) left join (select id, score from result where score < 60) b (过滤右表信息) on a.id = b.id; 左外连接就是左表过滤的结果必须全部存在。如果存在左表中过滤出来的数据,右表没有匹配上,这样的话右表就会出现NULL;
(2)右外连接查询
select a.id,score from (select id,age from stu where age < 20) a (过滤左表信息) right join (select id, score from result where score < 60) b (过滤右表信息) on a.id = b.id; 左外连接就是左表过滤的结果必须全部存在
我们发现过滤出来的表进行的匹配只有两条满足条件(红色代表条件满足),但最后的结果却是:
左表不匹配的数据改为空,右表过滤出来的数据都要存在。
(3)全外连接查询
结合了左外连接和右外连接,使得左表和右表的数据都存在。
2、内连接查询
只筛选匹配结果
只匹配我们需要的结果
语句为:
select a.id,score from (select id,age from stu where age < 20) a (过滤左表信息) inner join (select id, score from result where score < 60) b (过滤右表信息) on a.id = b.id; 以上是“mysql数据库如何实现查询语句”这篇文章的所有内容,感谢各位的阅读!