What is an inner join (or just join)?
Keeps only the records in which the key field is in both tables
What is a LEFT JOIN? (RIGHT)
Keeps all fields in the left table, and all matches in the right (Opposite)
What happens to fields that don’t match on LEFT/RIGHT/FULL JOINS?
Listed as missing values
What is a FULL JOIN?
All values in both tables
What is a CROSS JOIN?
Gives all combinations of rows from both tables