标签: php mysql
我的表格中有重复项目:
SELECT * FROM table GROUP BY name HAVING COUNT(*) >1
它返回每个重复的项目。但我想表明:
"重复X次"。
我怎样才能回复" "计数"在这种情况下?
答案 0 :(得分:2)
您应该显示count(),而不是*:
count()
*
select name, count(*) from table group by name having count(*) > 1;