I have two tables, storing candidates and their grades. A simple join can get all the candidates and their grades, by matching IDs etc.
e.g:
Alan C
George A
etc.. However:
Nina
The grade for Nina is null because she did not take the exam.
How can I get output like the following?
Alan C
George A
Nina
So still get Nina, even though she did not take the exam. I've tried null checks and then performing something, etc.
Thanks