Is there a simple way to retrieve a list of all unique values in a column, along with how many times that value appeared?
Example dataset:
A A A B B C >
SELECT id,COUNT(*) FROM file GROUP BY id