LeetCode SQL: Combine Two Tables

SELECT FirstName, LastName, City, State FROM Person p
LEFT JOIN Address a ON p.PersonId = a.PersonId

居然出SQL的题目了,左连接就行

原文地址:https://www.cnblogs.com/lailailai/p/4243017.html