Lors d'une jointure externe, déplacez les conditions de la table externe vers la clause ON, sinon la jointure externe se comporte comme une jointure interne :
SELECT table1.name FROM table1
LEFT JOIN table2 ON table1.ID = table2.ID
AND table2.propertyID = "First PropertyID"
AND table2.property = "Second PropertyID"