gpt4 book ai didi

php - mysql php 累积平均值

转载 作者:行者123 更新时间:2023-11-29 12:50:16 24 4
gpt4 key购买 nike

我有一个 table 名称

id name carbs protein fat

1 one 10 30 18
2 one 17 4 2
3 one 27 6 7

现在我想获得碳水化合物的累积平均值

我的查询是

SELECT (100*(sum(m.carbs)/(sum(m.carbs)+sum(m.fat)+sum(m.protein))))AS Percantage_carbs FROM `meal` AS m

我的查询给出结果 52.2580645

但是我会的

52.8848076

最佳答案

您的查询结果将是 44.628099173554,这是绝对正确的。

Total: 10+30+18+17+4+2+27+6+7 = 121
Carbs Only: 10+17+27 = 54

(54 / 121) * 100 = 44,63%

SQL fiddle :http://sqlfiddle.com/#!2/3d6e5/3

关于php - mysql php 累积平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24861951/

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