반응형
https://leetcode.com/problems/sales-person/description/
조건절과 in을 사용해본 문제였습니다.
📕 풀이방법
📔 풀이과정
1. order과 company를 join해 회사명이 'red'인 sales_id들을 select해줍니다.2. 해당 sales_id가 아닌 사람들의 이름을 salesperson에서 select해줍니다.
📕 Code
📔 C++
SELECT S.NAME AS NAME FROM SALESPERSON S
WHERE S.SALES_ID NOT IN (
SELECT SALES_ID FROM ORDERS O
JOIN COMPANY C ON O.COM_ID = C.COM_ID
WHERE C.NAME = 'RED'
)
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1050. Actors and Directors Who Cooperated At Least Three Times (0) | 2023.10.18 |
---|---|
(SQL) - LeetCode (easy) 620. Not Boring Movies (0) | 2023.05.24 |
(SQL) - LeetCode (easy) 596. Classes More Than 5 Students (1) | 2023.05.10 |
(SQL) - LeetCode (easy) 586. Customer Placing the Largest Number of Orders (0) | 2023.05.03 |
(MySQL) - LeetCode (easy) 197. Rising Temperature (0) | 2022.12.22 |