Solution: Build a Mini Dashboard
We'll cover the following...
We'll cover the following...
Query
SELECT s.name, COUNT(*) AS high_score_countFROM students sJOIN grades g ON s.id = g.student_idWHERE g.score > 90GROUP BY s.nameHAVING COUNT(*) > 0ORDER BY high_score_count DESC;
Explanation
This query counts how many high scores (above 90) each student has and lists them in order of who has the most.
Let’s break it ...