当前位置:  开发笔记 > 数据库 > 正文

左连接问题与哪里AND

如何解决《左连接问题与哪里AND》经验,为你挑选了1个好方法。



1> gbn..:

将外部过滤器移动到JOIN条件.否则,过滤器将其更改为INNER JOIN

select Post.id, name, body,
(select count() from Votes where id=Post.id AND (type & 4)<> 0) as DV
from Post 
left join Votes as V on V.id=Post.id AND V.IPAddr <> 0 
where flag='1' AND DV<1
limit 1

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有