I have a table which holds grades of students in some subjects.
STUDENT_GRADES
id | studentid | subjectid | grade
-----------------------------------
1 | 1 | 1 | A+
2 | 1 | 2 | A
3 | 1 | 3 | A-
4 | 2 | 2 | A
5 | 2 | 3 | A-
6 | 3 | 2 | B
7 | 4 | 3 | B+
and I have another table which holds subject list.
SUBJECTS
subjectid | subjectname
-----------------------------
1 | Maths
2 | Science
3 | History
Now I have to retrieve result in the following format.
FORMATTED_GRADES
studentid | subjectid | grade
-----------------------------------
1 | 1 | A+
1 | 2 | A
1 | 3 | A-
2 | 1 | fail
2 | 2 | A
2 | 3 | A-
3 | 1 | fail
3 | 2 | B
3 | 3 | fail
4 | 1 | fail
4 | 2 | fail
4 | 3 | B+
The FORMATTED_GRADES
contains each student from STUDENT_GRADES
and his/her grade in each subject. If there is no grade of a student in a subject in STUDENT_GRADES
, then the grade of the student in that subject should be fail.
Use
cross join
to generate the rows, andleft join
andcoalesce()
to get the data you want: