Problem Journey

Combine Two Tables

Easy | Database SQL | Solved: Jan 24, 2026
View on LeetCode →

Complexity Analysis

Time Complexity:

Space Complexity:

Problem Description

Table: Person

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| personId    | int     |
| lastName    | varchar |
| firstName   | varchar |
+-------------+---------+
personId is the primary key column for this table.

Table: Address

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| addressId   | int     |
| personId    | int     |
| city        | varchar |
| state       | varchar |
+-------------+---------+
addressId is the primary key column for this table.

Write a solution to report the first name, last name, city, and state of each person in the Person table. If the address of a PersonId is not present in the Address table, report null instead.

Solution

SELECT 
    firstName, 
    lastName, 
    city, 
    state
FROM Person
LEFT JOIN Address 
    ON Person.personId = Address.personId;