leetcode-mysql 2021-05-10

2021/5/16 19:27:16

本文主要是介绍leetcode-mysql 2021-05-10,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

来源:Leetcode  地址:https://leetcode-cn.com/problems/customers-who-bought-all-products/  【侵删】

 

ExampleA (买下所有产品的客户)

Customer 表:

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| customer_id | int     |
| product_key | int     |
+-------------+---------+
product_key 是 
Customer 表的外键

Product 表:

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| product_key | int     |
+-------------+---------+
product_key 是这张表的主键。

 

写一条 SQL 查询语句,从 Customer 表中查询购买了 Product 表中所有产品的客户的 id。

示例:

Customer 表:
+-------------+-------------+
| customer_id | product_key |
+-------------+-------------+
| 1           | 5           |
| 2           | 6           |
| 3           | 5           |
| 3           | 6           |
| 1           | 6           |
+-------------+-------------+

Product 表:
+-------------+
| product_key |
+-------------+
| 5           |
| 6           |
+-------------+

Result 表:
+-------------+
| customer_id |
+-------------+
| 1           |
| 3           |
+-------------+
购买了所有产品(5 和 6)的客户的 id 是 1 和 3 。

 

解题思路(group_concat 子查询)

select n.customer_id from
(select customer_id,group_concat(distinct product_key order by product_key) as product_key from customer group by customer_id order by customer_id) as n where n.product_key<=>(select group_concat(product_key order by product_key) as product_key from Product);

 

 

 



这篇关于leetcode-mysql 2021-05-10的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程