前言
练习sql语句,所有题目来自于力扣(https://leetcode.cn/problemset/database/)的免费数据库练习题。
今日题目:
1083.销售分析II
表:Product
列名 | 类型 |
---|---|
product_id | int |
product_name | varchar |
unit_price | int |
Product_id 是该表的主键(具有唯一值的列)。
该表的每一行表示每种产品的名称和价格。
表:Sales
列名 | 类型 |
---|---|
seller_id | int |
product_id | int |
buyer_id | int |
sale_date | date |
quantity | int |
price | int |
这个表可能有重复的行。product_id 是 Product 表的外键(reference 列)。buyer_id 永远不会是 NULL。sale_date 永远不会是 NULL。
该表的每一行都包含一次销售的一些信息。
编写一个解决方案,报告那些买了 S8 而没有买 iPhone 的 买家。注意,S8 和 iPhone 是 Product 表中显示的产品。
我那不值一提的想法:
- 首先梳理表内容,题干一共给了两张表,一张产品表,记录了产品id,产品名,以及价格,第二张销售表,记录了销售id,产品id,购买者id,销售日期,销售数量以及销售价格。
- 其次分析需求,需要找到买了s8没有买iphone的买家。
- 这道题利用子查询很简单
- 首先找到购买过s8的用户
- 然后找到所有购买过iphone的用户
- 最后使所有购买过s8的用户的id不在购买过iphone的用户id里面
select distinct s.buyer_id
from Sales s
left join Product p
on s.product_id = p.product_id
where product_name = "S8"
and s.buyer_id not in(
select s.buyer_id
from Sales s
left join Product p
on s.product_id = p.product_id
where product_name = "iPhone"
)
结果:
总结:
能运行就行。