A LEFT JOIN keeps all ten left-hand rows and fills the right-hand columns with NULL where nothing matched. Four is the inner join, six is what you get by adding WHERE orders.id IS NULL, and fourteen would need a FULL OUTER JOIN with unmatched rows on both sides.
Official docs