Quando a junção externa, move as condições da tabela externa para a cláusula ON, caso contrário, a junção externa se comporta como uma junção interna:
SELECT table1.name FROM table1
LEFT JOIN table2 ON table1.ID = table2.ID
AND table2.propertyID = "First PropertyID"
AND table2.property = "Second PropertyID"