码迷,mamicode.com
首页 > 其他好文 > 详细

607. Sales Person

时间:2018-10-22 13:01:43      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:person   red   font   not   mono   order   article   art   method   

https://leetcode.com/articles/sales-person/

Method 1:

select distinct name from salesperson 

where sales_id  not in

(

select distinct sales_id  from orders  o 

left join company c on o.com_id = c.com_id 

where c.name =  ‘RED‘

)

 

Method 2:

select distinct s.name name from salesperson s

left join orders o on o.sales_id  = s.sales_id 

left join company c on o.com_id = c.com_id 

where c.name <>  ‘RED‘ or c.name is null

607. Sales Person

标签:person   red   font   not   mono   order   article   art   method   

原文地址:https://www.cnblogs.com/ffeng0312/p/9829095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!