I have information:
ID value
1 1
2 1
3 2
4 1
5 3
2 2
I need to get a count of how many times each value occurs:
1 occurs 3 times
2 occurs 2 times
3 occurs 1 time
The sql here gave me a value but not the total number of occurences of each value in the Access 2000 database:
ID value
1 1
2 1
3 2
4 1
5 3
2 2
I need to get a count of how many times each value occurs:
1 occurs 3 times
2 occurs 2 times
3 occurs 1 time
The sql here gave me a value but not the total number of occurences of each value in the Access 2000 database:
Code:
select count(value) as theValue
from Project