183. Customers Who Never Order Orders 테이블에서 실제로 주문한 고객ID인 customerId 가 존재한다. 이때 Customer 테이블에 있는 고객 중 실제로 구매하지 않은 사람의 name을 반환하는 SQL을 작성하면 된다. (여기서 핵심은 not in 연산자를 사용하는 것이다.) select name as Customers from Customers where id not in ( select customerId from Orders ) 데이터베이스/SQL 2022.11.30