SQL实现

    1. SELECT FirstName, LastName, City, State
    2. FROM Person LEFT JOIN Address
    3. ON Person.PersonId = Address.PersonId;