sql语句查询,两个表关联,希望count 结果显示0列

a表user,b表org,a表与b表关联的是id,selectb.id,b.org_full_name,count(a.sum)ascountfrommgr_useral... a 表 user ,b表org ,a表与b表关联的是id,
select b.id,b.org_full_name, count (a.sum) as count from mgr_user a
left join org_info b on a.org_id=b.id
where a.status='3'
group by b.id,b.org_full_name
order by count desc
结果count 为0 的都出不来。怎么才能将count为0的全部显示出来?
展开
 我来答
badkano
2018-09-29 · 知道合伙人体育行家
badkano
知道合伙人体育行家
采纳数:144777 获赞数:885365
团长

向TA提问 私信TA
展开全部
select b.id,
       b.org_full_name,
       count(case
               when a.org_id = b.id then
                1
               else
                0
             end) as count
  from mgr_user a
  left join org_info b
    on a.org_id = b.id
 where a.status = '3'
 group by b.id, b.org_full_name
 order by count desc

这样试试

追问
不行啊,还是出不来count为0 的
追答
where改成and呢
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式