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 the following code
SELECT colname, COUNT(*) AS cnt FROM tablename GROUP BY colname ORDER BY cnt DESC LIMIT 10