以下是我的架构和数据的简化版本:
用户:
id | name
1 | Peter
2 | Max
3 | Susan
餐厅:
id | name
1 | Mario
2 | Ali
3 | Alfonzo
4 | BurgerQueen
菜肴:
id | name
1 | Burger
2 | Pizza
3 | Salad
users_dishes:
user_id | dish_id
1 | 1
2 | 1
2 | 2
3 | 2
3 | 3
restaurants_dishes:
restaurant_id | dish_id
1 | 2
1 | 3
2 | 1
2 | 3
3 | 1
3 | 2
3 | 3
4 | 1
所以我有三个实体:用户,餐厅和菜肴。 还有两个多对多关系。
作为输入,我有一个用户ID列表。 我现在需要的是找到所有餐馆,列表中的所有用户都可以在这里用餐。
考虑以下查询:
select u.name as user, group_concat(distinct r.name) as dishes
from users u
join users_dishes ud on ud.user_id = u.id
join restaurants_dishes rd on rd.dish_id = ud.dish_id
join restaurants r on r.id = rd.restaurant_id
group by u.id
这显示了每个用户可以访问的所有餐馆。
user | restaurants
Peter | Alfonzo,Ali,BurgerQueen
Max | Alfonzo,Ali,BurgerQueen,Mario
Susan | Alfonzo,Ali,Mario
所以我需要的是集合的交集。 您已经看到所有三个用户都可以访问Alfonzo和Ali。 但是彼得不能去马里奥。苏珊不能去汉堡皇后。
结果(对于用户ID 1,2,3)应为:
id | name
2 | Ali
3 | Alfonzo
对于ID 1、2,应为
id | restaurant
2 | Ali
3 | Alfonzo
4 | BurgerQueen
对于ID 2、3,应为
id | restaurant
1 | Mario
2 | Ali
3 | Alfonzo
您可以使用以下SQL脚本创建架构和示例数据:
CREATE TABLE users (id INT AUTO_INCREMENT,name varchar(100),PRIMARY KEY (id));
INSERT INTO users(name) VALUES ('Peter'),('Max'),('Susan');
CREATE TABLE restaurants (id INT AUTO_INCREMENT,name varchar(100),PRIMARY KEY (id));
INSERT INTO restaurants(name) VALUES ('Mario'),('Ali'),('Alfonzo'),('BurgerQueen');
CREATE TABLE dishes (id INT AUTO_INCREMENT,name varchar(100),PRIMARY KEY (id));
INSERT INTO dishes(name) VALUES ('Burger'),('Pizza'),('Salad');
CREATE TABLE users_dishes (user_id INT,dish_id INT,PRIMARY KEY (user_id, dish_id),INDEX (dish_id, user_id));
INSERT INTO users_dishes(user_id, dish_id) VALUES (1,1),(2,1),(2,2),(3,2),(3,3);
CREATE TABLE restaurants_dishes (restaurant_id INT,dish_id INT,PRIMARY KEY (restaurant_id, dish_id),INDEX (dish_id, restaurant_id));
INSERT INTO restaurants_dishes(restaurant_id, dish_id) VALUES (1,2),(1,3),(2,1),(2,3),(3,1),(3,2),(3,3),(4,1);
我还准备了SQL-fiddle on db-fiddle.com。
我还应该提到我需要一个与MySQL 5.7和MariaDB 10.1兼容的解决方案
答案 0 :(得分:4)
经典relational division。一种“最简单”的方法是:
select *
from restaurants r
where not exists (
select *
from users u
where not exists (
select *
from users_dishes ud
join restaurants_dishes rd on ud.dish_id = rd.dish_id
where ud.user_id = u.id
and rd.restaurant_id = r.id
)
and u.id in (1, 2, 3)
)
Demo here。换句话说,如果在给定的餐厅中有某个用户没有菜,那么该给定的餐厅将无法容纳所有用户。因此,我们要获得没有用户,没有餐厅的餐厅。
答案 1 :(得分:3)
我修改了您的查询,以按餐厅名称分组,并对可以在每个餐厅用餐的用户进行计数,并添加了以下条件:
select r.id, r.name as restaurant
from users u
join users_dishes ud on ud.user_id = u.id
join restaurants_dishes rd on rd.dish_id = ud.dish_id
join restaurants r on r.id = rd.restaurant_id
group by r.id, r.name
having count(distinct u.id) = (select count(*) from users);
结果:
| id | restaurant |
| --- | ---------- |
| 2 | Ali |
| 3 | Alfonzo |
请参见demo
您可以添加条件来检查用户列表,如下所示:
select r.id, r.name as restaurant
from users u
join users_dishes ud on ud.user_id = u.id
join restaurants_dishes rd on rd.dish_id = ud.dish_id
join restaurants r on r.id = rd.restaurant_id
where u.id in (1, 2, 3)
group by r.id, r.name
having count(distinct u.id) = 3;
答案 2 :(得分:1)
让我们重新说明一下问题:找到为每个用户提供至少一道菜的餐馆。可以表示为:
SELECT *
FROM restaurants
WHERE id IN (
SELECT restaurants_dishes.restaurant_id
FROM restaurants_dishes
JOIN users_dishes ON restaurants_dishes.dish_id = users_dishes.dish_id
WHERE users_dishes.user_id IN (1, 2, 3) -- <--------------+
GROUP BY restaurants_dishes.restaurant_id -- |
HAVING COUNT(DISTINCT users_dishes.user_id) = 3 -- this matches --+
)