175. Combine Two Tables

select FirstName, LastName,City, State
from Person
left join Address on Person.PersonId = Address.PersonId;

https://github.com/qixing810/leetcode_database
原文地址:https://www.cnblogs.com/yuesi/p/10134925.html