- SELECT * from A JOIN B ON condifition
- Select all records from A and B where the join condition is met
- DEFAULT Join
- SELECT * from A LEFT JOIN B ON condifition
- Select everything from A, along with any matching records in B
- Nothing different from LEFT JOIN except for sequence.