175. Combine Two Tables(SQL)
# Easy
# Write your MySQL query statement below
select FirstName, LastName, City, State from Person
left join Address on Person.PersonId = Address.PersonId;Last updated
# Easy
# Write your MySQL query statement below
select FirstName, LastName, City, State from Person
left join Address on Person.PersonId = Address.PersonId;Last updated