Quando un join esterno, sposta le condizioni della tabella esterna sulla clausola ON, altrimenti il join esterno si comporta proprio come un join interno:
SELECT table1.name FROM table1
LEFT JOIN table2 ON table1.ID = table2.ID
AND table2.propertyID = "First PropertyID"
AND table2.property = "Second PropertyID"