När yttre koppling, flytta villkoren för yttre tabell till ON-satsen, annars fungerar yttre koppling precis som en inre koppling:
SELECT table1.name FROM table1
LEFT JOIN table2 ON table1.ID = table2.ID
AND table2.propertyID = "First PropertyID"
AND table2.property = "Second PropertyID"