SQL 3加入group by和sum函数[重复]

Posted

技术标签:

【中文标题】SQL 3加入group by和sum函数[重复]【英文标题】:SQL 3 joins with group by and sum function [duplicate] 【发布时间】:2017-07-16 04:38:50 【问题描述】:

我有 3 张桌子 Tbcodetable

    codevalue | codename | desc1 | desc2 
    1         | SATO     | NAG   | Naga
    2         | SATO     | BAG   | Baguio
    3         | SATO     | NCR   | Head Office

成员

employeeno | capcon_accountno | savings_accountno | sato
1          | 00101            | 00201             | NCR
2          | 00102            | 00202             | BAG

Tbdeposit

employeeno | account_no | accountbalance
1          | 00101      | 1000
1          | 00201      | 5000
2          | 00102      | 1000
2          | 00202      | 5000

我要查询的是一个查询中每个 sato 的资本和储蓄的总和

codename | codevalue | desc1      | desc2 | capcon | savings
SATO     |3          |Head Office |NCR    |1000    | 5000
SATO     |2          |Baguio      |BAG    |1000    | 5000
SATO     |1          |Naga        |NAG    |0       | 0

我能做的最好的查询是

SELECT codename,codevalue,desc1,desc2,sum(b.accountbalance) as capcon 
  FROM TBCODETABLE c 
  left join TBMEMBER a on c.desc2 = a.SatoCode 
  join tbdeposit b on a.employeeno = b.employeeno 
 where a.SLAStatus = 'A' and c.codename ='sato'
group by codename, codevalue, desc1, desc2

这给了我这个结果

codename | codevalue | desc1      | desc2 | capcon
SATO     |1          |Head Office |NCR    |1000
SATO     |2          |Baguio      |BAG    |1000

这只给了我资本的总和(我不知道如何包括储蓄和结果资本。)它不包括纳加地区

我可以通过 employeeno 加入 tbmember 和 tbdeposit,但是我不知道如何在结果集中分离资本和储蓄的总和

编辑 我编辑了查询,现在由于 syed 我能够查询两者,但我仍然无法获得 NAG sato 代码。 查询:

SELECT codename,codevalue,desc1,desc2, coalesce(sum(b.accountbalance),0) as savings, coalesce(sum(bb.accountbalance),0) as capcon FROM TBCODETABLE c left join TBMEMBER a on c.desc2 = a.SatoCode join tbdeposit b on a.SAVINGS_AccountNo = b.AccountNo 
inner join tbdeposit bb on a.CAPCON_Accountno = bb.AccountNo where a.SLAStatus = 'A'
group by codename, codevalue, desc1, desc2

我能够得到预期的结果谢谢你们克里斯的左加入建议解决了我的 NAG SATO 问题,尽管 Syed 的回复对我帮助很大。 我不知道如何投票,所以我只会投票给克里斯(第一次来这里。)

我的最终查询是:

SELECT codename,codevalue,desc1,desc2, coalesce(sum(b.accountbalance),0) as savings, coalesce(sum(bb.accountbalance),0) as capcon FROM TBCODETABLE c left join TBMEMBER a on c.desc2 = a.SatoCode left join tbdeposit b on a.SAVINGS_AccountNo = b.AccountNo 
left join tbdeposit bb on a.CAPCON_Accountno = bb.AccountNo where a.SLAStatus = 'A' or codename = 'sato'
group by codename, codevalue, desc1, desc2

【问题讨论】:

Tbcodetable 你有 codevalue 1 是 Nagacodevalue 3 是总部 但在结果表中反之亦然. 还有,顺便说一句,你为什么需要在这里分组?恕我直言,您只需加入Tbdeposit 两次。 link 是的,我刚刚意识到我只需要再加入 1 个链接,正如链接 @SyedMZulqarnain 所说。虽然它仍然没有在结果中得到 NAG sato @PetSerAl 抱歉,只是代码值中的一个错字 【参考方案1】:

试试这个

select codename,codevalue,desc1,desc2,coalesce(sum(accountbalance),0) as capcon,
coalesce(deposite,0) as saving 
from tbcodetable tc  
left join tbmember tb 
on tc.codevalue = tb.employeeno  
left join(select max(employeeno) as employee,max(accountbalance) as deposite,accountbalance,employeeno from tbdeposite tp group by employeeno)l 
on tb.employeeno = l.employeeno group by codevalue;

DEMO

【讨论】:

【参考方案2】:

我认为您需要在子查询中按employeenoaccount_no 进行分组。然后使用 case when 将 capcon 和 Savings 拆分为单独的列:

select codename,
       codevalue,
       desc1,
       desc2,
       sum( case when a.savings_accountno = b.account_no then accountbalance else 0 end ) as savings,
       sum( case when a.capcon_accountno = b.account_no then accountbalance else 0 end ) as capcon
from   tbcodetable as c
       left join
       tbmember as a
       on c.desc1 = a.sato
       left join
       (
         select employeeno,
                account_no,
                sum( accountbalance ) as accountbalance
         from   tbdeposit
         group by employeeno,
                account_no
       ) as b
       on a.employeeno = b.employeeno
 group by codename,
       codevalue,
       desc1,
       desc2

见 SQLfiddle here

【讨论】:

【参考方案3】:

首先,当您在LEFT JOINed 的表中加入某些东西时,您还需要将其设为left join,否则您最终会得到与内部连接等效的东西。这不是你唯一的问题。

其次,对于值比较,大小写很重要,因此如果您的表格样本正确,您应该拥有c.codename ='SATO'

第三,你可能想在你的 SUM 中添加一个 case 语句,所以:

SUM(case 
    when account_no = capcon_account_no 
    THEN accountbalance ELSE NULL END)

你也可以做类似的事情来节省开支。

【讨论】:

以上是关于SQL 3加入group by和sum函数[重复]的主要内容,如果未能解决你的问题,请参考以下文章

SQL group by 和 sum 基于其他列中的不同值(如果其他列中的值重复,则求和一次)

SQL Sumif 函数/GROUP BY & SUM?

使用函数 SUM() 和 Group by 将 Mysql 查询转换为 SQL 查询

尝试将 INNER JOIN 和 GROUP BY SQL 与 SUM 函数一起使用,但不工作

更新 SQL Server 中 GROUP BY sum() 函数的查询问题 [关闭]

group by...having count()的问题