Problem
Table: Person
1 | |
Table: Address
1 | |
Write a SQL query for a report that provides the following information for each person in the Person table, regardless if there is an address for each of those people:
1 | |
Explanation
- We can use
LEFT JOIN.
Solution
1 | |