Today's challenge was a simple SQL problem. It was about joining two tables.

Let me give you all the question descriptions so you can understand it better. If you need more description about the challenge, you can find more detail here.

Write an SQL query 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.

Return the result table in any order.

The query result format is in the following example.

Example 1:

Input: 
Person table:
+----------+----------+-----------+
| personId | lastName | firstName |
+----------+----------+-----------+
| 1        | Wang     | Allen     |
| 2        | Alice    | Bob       |
+----------+----------+-----------+
Address table:
+-----------+----------+---------------+------------+
| addressId | personId | city          | state      |
+-----------+----------+---------------+------------+
| 1         | 2        | New York City | New York   |
| 2         | 3        | Leetcode      | California |
+-----------+----------+---------------+------------+
Output: 
+-----------+----------+---------------+----------+
| firstName | lastName | city          | state    |
+-----------+----------+---------------+----------+
| Allen     | Wang     | Null          | Null     |
| Bob       | Alice    | New York City | New York |
+-----------+----------+---------------+----------+
Explanation: 
There is no address in the address table for the personId = 1 so we return null in their city and state.
addressId = 1 contains information about the address of personId = 2.

I think the question is clear and straightforward; I don't think there is a thing for me to describe.

The Solution

A simple Join query is sufficient to tackle the task.

The Result

Runtime: 414 ms, faster than 70.48% of Python3 online submissions for Combine Two Tables.

Memory Usage: 0 MB, less than 100% of Python3 online submissions for Combine Two Tables.