gpt4 book ai didi

php - 获取每一行的值

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

例如,在我的 mysql 表中,我有一行保存值,我们将该表称为“days”,将行称为“haircuts”。

所以我有 5 行,在“理发”下都有“1”、“2”、“3”、“4”、“5”。我想做的,在 php 中,是将它们全部添加在一起并回显。所以它可能看起来像这样:

echo "Total haircuts: ",$haircuts;

这有望表明:

Total haircuts: 15

不过我不知道怎么办。这是我目前正在做的事情。

$getstats = mysqli_query($con,"SELECT * FROM stats");
$gotstats = mysqli_fetch_array($getstats);
$haircuts = $gotstats['haircuts'];

但这只是呼应第一排的“发型”? :(

如果可能的话,我想对多个列进行总计和回显?

最佳答案

您可以在查询中使用 MySQL 语句 SUM,只需按此更改代码即可:

$getstats = mysqli_query($con,"SELECT SUM(haircuts) AS totalhaircuts FROM stats");
$gotstats = mysqli_fetch_array($getstats);
$totalhaircuts = $gotstats['totalhaircuts'];
echo "Total haircuts: ",$totalhaircuts;

关于php - 获取每一行的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27175674/

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