mysql列数据示例:

stringone
stringthree
stringtwo
stringone
stringone
stringthree

如何使用php或mysql本身从mysql获得以下结果?我不知道字符串的内容。
stringone    3x
stringthree  2x
stringtwo    1x

谢谢你的建议和指导。

最佳答案

试试这个:

SELECT columnname1,count(columnname1)
  FROM tablename
   GROUP BY conlumnname1;

http://sqlfiddle.com/#!2/ecc99/1

09-19 05:50