lets say i have this table
user|group|acceptance
1 | a | -1
2 | a | 2
3 | b | 1
4 | b | 2
5 | b | 2
6 | c | -1
how do i get count how many users in each group have acceptance not -1 but still list the group having 0 count
so result would be like
group | count
a | 1
b | 3
c | 0
thanks for the help