Closed congr closed 6 years ago
https://leetcode.com/problems/combine-two-tables/description/
Select FirstName, LastName, Address.City, State from Person left join Address on Person.PersonId = Address.personId;
https://leetcode.com/problems/combine-two-tables/description/