Question

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

... Would return:

A  |  3
B  |  2
C  |  1

Thanks!

Was it helpful?

Solution

Use GROUP BY:

select value, count(*) from table group by value

Use HAVING to further reduce the results, e.g. only values that occur more than 3 times:

select value, count(*) from table group by value having count(*) > 3

OTHER TIPS

SELECT id,COUNT(*) FROM file GROUP BY id
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top