Instruction
Fine! And yet another one so that you can become the master of GROUP BY with CASE WHEN.
Exercise
For each degree course, show its ID (as id) and the number of distinct candidates who applied for this course and have the preferred_contact set to:
- 'mobile' (column:
count_mobile), - 'mail' (column:
count_mail).
Stuck? Here's a hint!
Things are getting serious. You will need to JOIN two (or three if you'd like) tables this time! Don't forget about the DISTINCT clause.



