SELECT FirstName, LastName, City, State FROM Person
LEFT JOIN Address USING(PersonId)
We could also replace
USING(PersonId)
with
ON Person.PersonId = Address.PersonId
The ON
clause is used to join tables where the column names don’t match in both tables.