gpt4 book ai didi

php - 联合所有表的结果

转载 作者:行者123 更新时间:2023-11-29 01:52:31 25 4
gpt4 key购买 nike

我只想在我的 3 表中获得结果。首先,它将对每个项目代码的数量求和。然后根据我下面的公式输出结果。

SUM(table 1)
itemcode qty date
001 20 06-17
002 20 06-17
001 10 06-18


+(add) of

SUM(table 2)
itemcode qty date
001 10 06-17
002 40 06-17
001 5 06-18

-(subtract) of

table 3
itemcode qty date
001 5 06-17
002 5 06-17
002 5 06-18

结果:

itemcode   qty
001 40
002 50

最佳答案

使用下面的查询

select t.itemcode as itemcode,sum(t.qty) as qty
from (
select itemcode,qty from table1
union all
select itemcode,qty from table2
union all
select itemcode,(qty * -1) from table3) as t
group by t.itemcode

关于php - 联合所有表的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37893729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com