gpt4 book ai didi

php - 使用MySQL计数函数

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

我想计算所有用户记录并将其显示在表格中,我正在尝试这段代码,它仅显示一个用户的记录,我想显示所有用户的记录。

$u=$_POST['userid'];

$result1 = mysqli_query($con,"SELECT COUNT(user_id) as total FROM table-name where user_id=$u");

echo "<table border='1'>

</tr>

<tr>

<th>User ID</th>

<th>count</th>

</tr>";

while($row = mysqli_fetch_array($result1))
{
echo "<tr>";
echo "<td>" . $u . "</td>";
echo "<td>" . $row['total'] . "</td>";
echo "</tr>";
}
echo "</table>";
}

最佳答案

尝试以下 SQL 查询:

SELECT `user_id`, COUNT(`user_id`) as `total` FROM `table-name` GROUP BY `user_id`;

请参阅 GROUP BY 的文档条款。

关于php - 使用MySQL计数函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23320164/

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