링크
https://leetcode.com/problems/find-customer-referee/description/
문제
Find the names of the customer that are not referred by the customer with id = 2.
Return the result table in any order.
The result format is in the following example.
정답
select name
from (
select id,
name,
ifnull(referee_id, 0) as referee_id
from customer
) a
where referee_id <> 2
해설
- NULL 값 처리
새롭게 이해한 내용
- NULL 값의 처리를 항상 염두에 둬서 실무에 사용
'[업무 지식] > MySQL' 카테고리의 다른 글
[같은 테이블 내 비교] Average Time of Process per Machine (0) | 2024.10.25 |
---|---|
[on 조건] Rising Temperature (0) | 2024.10.24 |
상품을 구매한 회원 비율 구하기 (0) | 2024.10.22 |
자동차 대여 기록 별 대여 금액 구하기 (0) | 2024.10.21 |
[기간에 포함되지 않는 날짜] 특정 기간동안 대여 가능한 자동차들의 대여비용 구하기 (0) | 2024.10.18 |