I have a column in mysql table that has the the data type INT(11).
How can I search to get the top 10 most occurring values in this column?
SELECT col, count(*) FROM tablethingie GROUP BY col ORDER BY count(*) DESC LIMIT 10
1.4m articles
1.4m replys
5 comments
57.0k users