Instruction
Good! Of course, you can use COUNT(*), COUNT(column), or COUNT(expression) with GROUP BY.
Exercise
For each project, show the client_id and the number of projects commissioned by that specific client which have some feedback (zero if there are no such projects). Name the second column projects_no.
Stuck? Here's a hint!
Remember to use COUNT(feedback) instead of COUNT(*).



