Solution: Go Multi-Level
We'll cover the following...
We'll cover the following...
Query
SELECT s.name, g.subject, g.scoreFROM students sJOIN grades g ON s.id = g.student_idWHERE g.score > 85ORDER BY g.score DESC;
Explanation
This query lists the names of students who scored above 85 in any ...