gpt4 book ai didi

php - 计算表字段中的重复值

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

我如何计算 mysql 数据库表的任何字段中的重复值。

示例:

    id name
1 aaa
2 aaa
3 ttt
4 ccc
5 ttt
6 ccc
7 aaa
8 zzz

我如何获得值在表格中重复了多少次。

    aaa =3 times in table
ttt =2 times in table
ccc =2 times in table
zzz =1 times in table

我认为 mysql 的计数是可能的,但是我不知道如何使用它,我不知道有人可以提供帮助吗?请回答我的问题,谢谢。

最佳答案

您需要按name 列进行分组,然后您可以在该组上使用像count() 这样的聚合函数

select name, count(id)
from your_table
group by name

关于php - 计算表字段中的重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19723342/

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