Count all duplicates of each value
SELECT number, COUNT(*)
FROM YourTable
GROUP BY number
ORDER BY number
SELECT col,
COUNT(dupe_col) AS dupe_cnt
FROM TABLE
GROUP BY col
HAVING COUNT(dupe_col) > 1
ORDER BY COUNT(dupe_col) DESC