其他分享
首页 > 其他分享> > 每日一题-89(购买了产品A和产品B却没有购买产品C的顾客)

每日一题-89(购买了产品A和产品B却没有购买产品C的顾客)

作者:互联网

题89:

根据下面两表编写SQL 查询来报告购买了产品 A 和产品 B 却没有购买产品 C 的顾客的 ID 和姓名( customer_id 和 customer_name ),我们将基于此结果为他们推荐产品 C ,您返回的查询结果需要按照 customer_id 排序。

在这里插入图片描述
其中:

解题思路:直接判断是否在或不在某一组中.

select * from Customers 
where customer_id in(
    select customer_id
    from Orders 
    where product_name  = 'A'
)
and customer_id in (
    select customer_id
    from Orders 
    where product_name  = 'B'
)
and customer_id not in (
    select customer_id
    from Orders 
    where product_name  = 'C'
)
order by customer_id;

标签:customer,product,name,89,产品,一题,where,id,select
来源: https://blog.csdn.net/Txixi/article/details/122753351