码迷,mamicode.com
首页 > 数据库 > 详细

SQL一次性查询一个字段不同条件下的统计结果

时间:2018-05-31 16:17:06      阅读:345      评论:0      收藏:0      [点我收藏+]

标签:sql   join   https   操作   根据   div   net   null   结果   

参考了一下这篇文章:https://blog.csdn.net/xichenguan/article/details/51764100 , 感谢原作者

有两个表,分别存放了【操作员】和【单据】,要根据单据的不同类型来分类汇总(销售单、销售退货单,笔数和金额),并且显示在同一张表里,不想用做两次查询再合并的方法,研究了一下,终于搞定:

d_employee表

技术分享图片

d_bilndx表

技术分享图片

 

代码如下:

select  b.inputid as 开单员编号, 
        e.fullname as 开单员, 

        isnull( ( select count(*)
          from d_bilndx
          where draft=3 and biltype=12 and d_bilndx.inputid=e.id
        ), 0) as 销售开单笔数,

        isnull( ( select sum(d_bilndx.amount)
          from d_bilndx
          where draft=3 and biltype=12 and d_bilndx.inputid=e.id
        ), 0) as 销售开单金额,

        isnull( ( select count(*)
          from d_bilndx
          where draft=3 and biltype=13 and d_bilndx.inputid=e.id
        ), 0) as 销售退单笔数,

        isnull( ( select sum(d_bilndx.amount)
          from d_bilndx
          where draft=3 and biltype=13 and d_bilndx.inputid=e.id
        ), 0) as 销售退单金额,

        count(b.biltype) as 开单总笔数,
        sum(b.Amount) as 开单金额

from d_bilndx as b
left join d_employee as e 
on b.inputid=e.id 
where b.draft=3 and ( b.biltype=12 or b.biltype=13 )
group by b.inputid, e.fullname, e.id

 

得到完美结果:

 

技术分享图片

SQL一次性查询一个字段不同条件下的统计结果

标签:sql   join   https   操作   根据   div   net   null   结果   

原文地址:https://www.cnblogs.com/skysowe/p/9117099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!