607. Sales Person leetcode solution

April 22, 2023


for explanation watch video

# Write your MySQL query statement below
select name from SalesPerson where sales_id
not in (
    select sales_id from Orders where
    com_id = (select com_id from Company 
    where name="RED")
);



Source link

Comments 0

Leave a Reply

Your email address will not be published. Required fields are marked *