题目描述

(通过次数17,421 | 提交次数32,907,通过率52.94%)

Table:Product
+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| product_id   | int     |
| product_name | varchar |
| unit_price   | int     |
+--------------+---------+
product_id 是这张表的主键
Table:Sales
+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| seller_id   | int     |
| product_id  | int     |
| buyer_id    | int     |
| sale_date   | date    |
| quantity    | int     |
| price       | int     |
+------ ------+---------+
这个表没有主键,它可以有重复的行.
product_id 是 Product 表的外键.
编写一个 SQL 查询,查询购买了 S8 手机却没有购买 iPhone 的买家。注意这里 S8 和 iPhone 是 Product 表中的产品。

查询结果格式如下图表示:
Product table:
+------------+--------------+------------+
| product_id | product_name | unit_price |
+------------+--------------+------------+
| 1          | S8           | 1000       |
| 2          | G4           | 800        |
| 3          | iPhone       | 1400       |
+------------+--------------+------------+
Sales table:
+-----------+------------+----------+------------+----------+-------+
| seller_id | product_id | buyer_id | sale_date  | quantity | price |
+-----------+------------+----------+------------+----------+-------+
| 1         | 1          | 1        | 2019-01-21 | 2        | 2000  |
| 1         | 2          | 2        | 2019-02-17 | 1        | 800   |
| 2         | 1          | 3        | 2019-06-02 | 1        | 800   |
| 3         | 3          | 3        | 2019-05-13 | 2        | 2800  |
+-----------+------------+----------+------------+----------+-------+
Result table:
+-------------+
| buyer_id    |
+-------------+
| 1           |
+-------------+
id 为 1 的买家购买了一部 S8,但是却没有购买 iPhone,而 id 为 3 的买家却同时购买了这 2 部手机。

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/sales-analysis-ii
//测试数据
Create table If Not Exists Product (product_id int, product_name varchar(10), unit_price int);
Create table If Not Exists Sales (seller_id int, product_id int, buyer_id int, sale_date date, quantity int, price int);

insert into Product (product_id, product_name, unit_price) values ('1', 'S8', '1000');
insert into Product (product_id, product_name, unit_price) values ('2', 'G4', '800');
insert into Product (product_id, product_name, unit_price) values ('3', 'iPhone', '1400');

insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('1', '1', '1', '2019-01-21', '2', '2000');
insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('1', '2', '2', '2019-02-17', '1', '800');
insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('2', '1', '3', '2019-06-02', '1', '800');
insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('3', '3', '3', '2019-05-13', '2', '2800');

解题思路

Product表保存了所有的产品信息。包括产品ID、产品名称。

Sales表保存了所有的销售记录。

题目要求:查询购买了 S8 手机却没有购买 iPhone 的买家。

这里面需要用到两个信息:

第1:根据产品名称,获取产品ID。从Product表可以获取。

第2:获取某产品的买家,从Sales表可以获取。

有了上面两个信息,我们首先可以根据产品名称,获取S8 手机、iPhone这两个产品的ID。

然后从Sales表中分别查询出购买了S8 手机和iPhone的买家。

最后,再找出存在于购买了S8 手机的买家中,却不在购买了iPhone的买家中的买家即可。

参考SQL

未特别说明的情况下,参考SQL为基于MySQL8.0实现。
select
    a.buyer_id
from (
    select
        buyer_id
    from Sales
    where product_id in (select product_id from Product where product_name = 'S8')
    group by buyer_id
) a
left join (
    select
        buyer_id
    from Sales
    where product_id in (select product_id from Product where product_name = 'iPhone')
    group by buyer_id
) b
on a.buyer_id = b.buyer_id
where b.buyer_id is null;
picture loss