# Write your MySQL query statement below
1083. 销售分析 II
表:Product
+--------------+---------+ | Column Name | Type | +--------------+---------+ | product_id | int | | product_name | varchar | | unit_price | int | +--------------+---------+ Product_id 是该表的主键(具有唯一值的列)。 该表的每一行表示每种产品的名称和价格。
表:Sales
+-------------+---------+ | Column Name | Type | +-------------+---------+ | 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
表中显示的产品。
以 任意顺序 返回结果表。
结果格式如下所示。
示例 1:
输入:
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 |
+-----------+------------+----------+------------+----------+-------+
输出:
+-------------+
| buyer_id |
+-------------+
| 1 |
+-------------+
解释:
id 为 1 的买家购买了一部 S8,但是却没有购买 iPhone,而 id 为 3 的买家却同时购买了这 2 部手机。
原站题解
mysql 解法, 执行用时: 759 ms, 内存消耗: 0 B, 提交时间: 2023-10-15 17:04:12
SELECT S.buyer_id FROM Sales S JOIN Product P ON S.product_id = P.product_id GROUP BY S.buyer_id HAVING COUNT(IF(P.product_name = 'S8',TRUE, NULL)) >= 1 AND COUNT(IF(P.product_name = 'iPhone',TRUE, NULL)) = 0
mysql 解法, 执行用时: 938 ms, 内存消耗: 0 B, 提交时间: 2023-10-15 17:04:02
select buyer_id from ( select buyer_id, case when p.product_name ='S8' then 1 else 0 end s8, case when p.product_name = 'iPhone' then 1 else 0 end IPh from Sales s left join Product p on s.product_id=p.product_id ) a group by buyer_id having sum(s8)>0 and sum(IPh)=0