Imagine we have two tables:
clientOffices
that have a list of offices that each client has.clusters
are groups of cities
clientOffices
-----------------------------
clientId | office
-----------------------------
1 London
1 Manchester
1 Edinburgh
1 Bonn
2 London
2 Frankfurt
2 Bonn
3 Manchester
3 Frankfurt
-----------------------------
clusters
-----------------------------
clusterName | city
-----------------------------
X London
X Manchester
Y Manchester
Y Frankfurt
Y Bonn
Z London
Z Bonn
-----------------------------
Now we want a query that tells us this: For each client, which what clusters are they FULLY present in? i.e. they have an office in EVERY city in the cluster?
Desired result:
-------------------------------------------
clientOffices.clientId | clusters.clusterName
-------------------------------------------
1 X
1 Z
2 Z
3 Null
--------------------------------------------
I'm a MySQL Noob - tried different types of joins but couldn't get this result. It'd be great if you could help.
fiddle: https://www.db-fiddle.com/f/2GTBVXm9StNHcyuSqSZikW/0
This will show all the client names that have complete cluster
https://www.db-fiddle.com/f/6jKvKXPYvsLeXgm3Qv1nHu/10