I have two tables
Table_1
id|subject_code|subject_id
1|Test1 |1
2|Test2 |2
3|Test3 |3
Table2
id|subject_id|grade|status
1|1 |5.00 |Fail
2|3 |2.25 |Pass
Now, I want to create a query that will return the following,
Table3
subject_code|grade|status
Test1 |5.00 |Fail
Test2 |NULL |NULL
Test3 |2.25 |Pass
I have read about combining left join and union all but I am lost on how to do that. Thanks in advance.