Left Join
If you can teach Left Join using student + marks, you know it. If you only know the heading, you don’t.
Keep Left Join small. Ananya should finish student + marks in a few lines, not a 40-line dump.
Without Left Join, a report gets messy and student + marks is hard to trust.
Use Left Join when student + marks must stay clear. If a simpler SQL step works, use that instead.
If student + marks breaks under Left Join, check missing ON → cartesian product first.
Left Join is not a lonely heading. Ananya ties it to student + marks.
One breath for Left Join, then student + marks, then missing ON → cartesian product. Sit down.
students.id
=
marks.student_id
│
▼
one result rowSay Left Join in one breath, then JOIN … ON s.roll = m.roll, then missing ON → cartesian product.