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;
Ref: https://www.diffen.com/difference/Inner_Join_vs_Outer_Join
Last updated
Was this helpful?