SELECT
user_phone,
count( * ) AS COUNT
FROM
customer
GROUP BY
user_phone
ORDER BY
COUNT DESC

mysql 统计某一列数据出现的次数_其它