https://leetcode.com/problems/customer-who-visited-but-did-not-make-any-transactions/
문제 이해하는 데 오래걸렸다.
처음에는 이해를 못해서 discussion 으로 찾아보았고,
그래도 모르겠어서 다음날 다시 도전했더니 이해가 되었다.
select v.customer_id, count(v.customer_id) as count_no_trans
from Visits as v
where visit_id not in (select distinct visit_id from Transactions)
group by customer_id;
728x90
반응형
'자료구조 알고리즘 > 코딩테스트' 카테고리의 다른 글
197. Rising Temperature (0) | 2022.06.03 |
---|---|
1148. Article Views I (0) | 2022.06.03 |
746. Min Cost Climbing Stairs (0) | 2022.05.31 |
70. Climbing Stairs (0) | 2022.05.31 |
176. Second Highest Salary (0) | 2022.05.30 |