-
584. Find Customer Referee mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:49
https://leetcode.com/problems/find-customer-referee/?envType=study-plan&id=sql-i
SQL에서는 비교 연산자에서는 NULL이 배제된다.
(반면 논리 연산자에서는 NULL이 배제되지 않는다.)# Write your MySQL query statement below select name from customer where referee_id != 2 or referee_id is null;
*SQL에서 비교연산자로 Null처리하기 참고
'LeetCode_Study_Plan > SQL' 카테고리의 다른 글
1873. Calculate Special Bonus mysql (0) 2022.09.26 183. Customers Who Never Order mysql (1) 2022.09.25 1757. Recyclable and Low Fat Products mysql (1) 2022.09.25 595. Big Countries mysql (1) 2022.09.25 [SQL I] 시작 (1) 2022.09.25