17. Find Customer Referee
https://leetcode.com/problems/find-customer-referee/submissions/1443289813/
#문제 : Find the names of the customer that are not referred by the customer with id = 2.
select name from customer where referee_id is null or referee_id != 2