gpt4 book ai didi

SQL 服务器 : SUM of a column based on another column

转载 作者:搜寻专家 更新时间:2023-10-30 23:44:15 25 4
gpt4 key购买 nike

OrderDetailID   OrderID ProductID   Quantity
--------------------------------------------
1 10248 11 12
2 10248 42 10
3 10248 72 5
4 10249 14 9
5 10249 51 40

我需要根据 OrderID 获取总数量。所以理想情况下,结果应该是这样的:

OrderID Quantity
----------------
10248 27
10249 49

我想我必须按 OrderID 对其进行分组,但不确定如何根据 OrderID 获取数量总和。

最佳答案

您是否尝试过使用:

select OrderId, sum(Quantity) from yourtable group by OrderId

应该这样做。

关于SQL 服务器 : SUM of a column based on another column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30954897/

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