본문 바로가기

SQL

(SQL) - LeetCode (easy) 584. Find Customer Referee

반응형

https://leetcode.com/problems/find-customer-referee/description/

 

Find Customer Referee - LeetCode

Can you solve this real interview question? Find Customer Referee - Table: Customer +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | | referee_id | int | +-------------+---------+ id is the primary

leetcode.com

select from where절을 사용해보는 기본 문제였습니다.

📕 풀이방법

📔 풀이과정

null처리를 해야합니다. null은 is not null 또는 is null로 여부를 검사할 수 있습니다. =으로는 걸러지지 않으니 주의합니다.

📔 정답 출력 | 반환

2가 아니거나 null인 row들을 select해줍니다.


📕 Code

📔 MySQL

select name from customer where referee_id is null or referee_id != 2

📔 Oracle

select name as name from customer where referee_id is null or referee_id != 2

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.