gpt4 book ai didi

php - mysql 不同和计数

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

我有这样的表:

+------+-------+
| user | data |
+------+-------+
| 1 | a |
+------+-------+
| 1 | b |
+------+-------+
| 2 | c |
+------+-------+

我需要得到类似的东西:

Array
(
[1] => 2
[2] => 1
)

获取唯一用户并计算数据行中的实例,有什么想法吗?

我试过这个查询:

SELECT DISTINCT user from table ORDER BY ID DESC

最佳答案

你应该为此使用GROUP BY

SELECT `User`, COUNT(data) TotalCount
FROM tableName
GROUP BY `User`
ORDER BY TotalCount DESC

关于php - mysql 不同和计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10661670/

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