mysql在left join后的where条件里过滤join表将变为inner join
2024-01-03 19:19:27
sql1:此时是正常的左连接
select user.name,dept.dept_name from user left join dept on dept.id= user.dept_id and dept.is_deleted='N' where user.is_delete='N'
此时将返回全部user并附带所属的单位(有可能有些user没有dept)
那假如想查出单位名为:“希望小学”的教师记录,但是不想使用inner join,那要怎么处理呢?此时看sql2
sql2:在where里过滤join表的条件,使其变成内连接
select user.name,dept.dept_name from user left join dept on dept.id= user.dept_id and dept.is_deleted='N'
where user.is_delete='N' and dept.dept_name='希望小学'
此时就只查出单位为“希望小学”的教师记录了,变成了inner join,实际上两者是一样的,mysql可能内部会自动转化成inner join,因为实测速度变快了为inner join的速度
select user.name,dept.dept_name from user inner join dept on dept.id= user.dept_id
and dept.dept_name='希望小学'
and dept.is_deleted='N' where user.is_delete='N'
这种动态left join变inner join方式可以用于mybatis,也是以上场景
select user.name,dept.dept_name from user left join dept on dept.id= user.dept_id and dept.is_deleted='N'
where user.is_delete='N'
<if test="et.deptName != null and et.deptName != ''">
and dept.dept_name like concat('%',#{et.deptName},'%')
</if>
文章来源:https://blog.csdn.net/cjy1575944940/article/details/135369251
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!