Relational data is split across tables on purpose — teams here, players there — and joins are how you bring it back together to answer questions that span those tables. A join combines rows from two tables based on a related column, and mastering the different join types is the single biggest step from writing trivial single-table queries to genuinely working with a relational model.
The join type determines what happens to rows that have no match on the other side. An inner join keeps only matching pairs; a left join keeps every left row, filling unmatched right columns with nulls; right and full joins extend that to the other side and both sides. Choosing the wrong type silently drops or invents rows, so the distinction is not academic.
This lesson works through each join type, the role of the join condition, and the subtle interaction between join filters and the WHERE clause. The goal is to reach for the right join deliberately and to read a join's result without surprise — including the classic traps that turn a left join back into an inner join by accident.