Large organizations often manage multiple identity systems. You are tasked with generating a report that maps every employee to their unique identifier, if one exists in the secondary system.
Write an SQL query to show the unique ID of each user. If a user does not have a unique ID, display null instead.
| id(INTEGER) | name(VARCHAR) |
|---|---|
| 1 | Alice |
| 7 | Bob |
| 11 | Meghan |
| 90 | Winston |
| 3 | Jonathan |
| 4 | Sarah |
| id(INTEGER) | unique_id(INTEGER) |
|---|---|
| 3 | 101 |
| 11 | 102 |
| 90 | 103 |
| unique_id(INTEGER) | name(VARCHAR) |
|---|---|
| null | Alice |
| null | Bob |
| 102 | Meghan |
| 103 | Winston |
| 101 | Jonathan |
| null | Sarah |