본문 바로가기
Develop/Database

[Leetcode] 183. Customers Who Never Order (MySQL) 문제 및 풀이

by 초코칩프라푸치노 2021. 12. 16.

문제) Leetcode - Join - Customers Who Never Order

https://leetcode.com/problems/customers-who-never-order/

 

Customers Who Never Order - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

customer 테이블에서 order 테이블에 존재하지 않는 name을 찾는 문제였습니다. customer 테이블과 order 테이블을 left join 한 후에 where문으로 order에 존재하지 않는 사람을 찾으면 해결할 수 있습니다.

 

 

풀이)

select a.name as Customers
from Customers as a left join Orders as b on a.id = b.customerId
where b.id is null
반응형

댓글