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?
Try:
SELECT ColName, Count(1) AS occurances FROM table GROUP BY ColName ORDER BY occurances DESC LIMIT 10