gpt4 book ai didi

php - 来自 WHERE 条件的所有行的总和?

转载 作者:行者123 更新时间:2023-11-29 02:06:04 25 4
gpt4 key购买 nike

我正在尝试添加从查询中检索到的所有行的内容。

到目前为止我已经尝试过:

$totalquery = "SELECT SUM(catalogue.price) AS fCount
FROM catalogue LEFT JOIN orders ON catalogue.plantid = orders.orderplantid
WHERE orders.orderplantid = '$actualresult' AND orders.ordercustomerid = '$actualresult2' GROUP BY catalogue.price";
$result3 = mysql_query($totalquery) or die ("Query failed : " . mysql_error());
$totalresult = mysql_result($result3,0);

然后回显 $totalresult,但问题是只显示最后一个值,而不是所有选定值的总和 - 关于我哪里出错的任何想法?

最佳答案

从行尾删除 GROUP BY catalogue.price; sum 命令是 aggregate functions 之一.

关于php - 来自 WHERE 条件的所有行的总和?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5808898/

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