A marketing team needs to analyze customer acquisition sources. Specifically, they want to identify customers who were not introduced to the platform by a specific referee.
Write an SQL query to report the names of the customers that are not referred by the customer with ID 2.
| id(INTEGER) | name(VARCHAR) | referee_id(INTEGER) |
|---|---|---|
| 1 | Will | null |
| 2 | Jane | null |
| 3 | Alex | 2 |
| 4 | Bill | null |
| 5 | Zack | 1 |
| 6 | Mark | 2 |
| name(VARCHAR) |
|---|
| Will |
| Jane |
| Bill |
| Zack |