Last updated 3 years ago
Was this helpful?
https://leetcode.com/problems/find-customer-referee
Given a table customer holding customers information and the referee.
customer
Write a query to return the list of customers NOT referred by the person with id '2'.
For the sample data above, the result is:
+------+------+-----------+ | id | name | referee\_id| +------+------+-----------+ | 1 | Will | NULL | | 2 | Jane | NULL | | 3 | Alex | 2 | | 4 | Bill | NULL | | 5 | Zack | 1 | | 6 | Mark | 2 | +------+------+-----------+
+------+ | name | +------+ | Will | | Jane | | Bill | | Zack | +------+