Handy MySQL Query to Find All Unique/Different Values of a Column

Posted:

select col_name, count(col_name) from table_references group by col_name;