gpt4 book ai didi

postgresql - 如何在 postgresql 中构建此查询

转载 作者:行者123 更新时间:2023-11-29 14:09:36 26 4
gpt4 key购买 nike

enter image description here

假设我有这个数据。如何以一种有效的方式查询它。它会将所有 OUT 的数量加起来减去每个项目的 IN。

enter image description here

最佳答案

试试这个查询:

select
"Desc",
sum(case when Type = 'out' then Qty else 0 end) -
sum(case when Type = 'in' then Qty else 0 end)
from yourTable
group by "Desc"
Desc

请注意,DESC 是一个保留关键字,您不应该使用它来命名您的数据库、表或列。我认为您必须用双引号将其转义才能运行查询。

关于postgresql - 如何在 postgresql 中构建此查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44940468/

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