gpt4 book ai didi

MySql 查询对行求和并获取最大值

转载 作者:行者123 更新时间:2023-11-29 05:26:57 25 4
gpt4 key购买 nike

我有一个带有示例数据的表格产品,如下所示

product  1   2  2   3   1          
Quantity 10 15 20 10 5

在对所有产品的所有可用数量求和后,我需要找出哪个产品的数量最多

示例:这里的答案是 15+20 = 35 最大,所以产品 2 的数量更多

请帮忙查询

最佳答案

select product, sum(quantity) as sum_quantity
from products
group by product
order by sum_quantity desc
limit 1

关于MySql 查询对行求和并获取最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19109972/

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