Skip to content
Advertisement

SQL statement to list final course grade for students taking two specific courses

This is my statement for the final course grade for all those students taking MATH, how can I adjust this so it displays the final course grade for MATH, but only for students who are taking both MATH and ART ?

Advertisement

Answer

You can do it with conditional aggregation:

First, you should use a proper join with an ON clause and not that archaic syntax with the , between the table names and the join conditions in the WHERE clause.

For your requirement you must remove the condition assignment.course = 'MATH' from the WHERE clause because you want to check that the students took 'ART' also.
This is done in the HAVING clause.

Also, note that if both mark and weighting are integers, then in this expression:

the division will truncate any decimal part because SQLite performs integer division between integers.
So, if you want a result with decimal part you should divide by 100.0:

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement