I have a table as follows:
id name
1 Complete
2 Incomplete
2 Incomplete
1 packaged
3 complete
4 packaged
4 packaged
How can I do a count statement to get the following output:
complete 2
incomplete 1
packaged 2
The reason that "incomplete" is 1 is because it is grouped by id, the same is with "packaged". Can someone let me know how I can get a count of "name" by grouping by 'id" ?
Thank you,
A