Będziesz musiał użyć kombinacji IN()
i GROUP BY ... HAVING
osiągnąć to. Nie ma również potrzeby dołączania, jeśli potrzebujesz tylko identyfikatora użytkownika. Czyli coś takiego:
SELECT user, COUNT(attribute) AS attribute_count
FROM attributes
WHERE attribute IN(...) /* include your set of attributes here */
GROUP BY user
HAVING attribute_count = ? /* include number equal to number of attribute ID's in IN() above */
Jeśli potrzebujesz identyfikatora użytkownika i nazw, możesz po prostu dołączyć ten zestaw rekordów pochodzący z powyższego zapytania jako filtr do tabeli użytkowników:
SELECT user.id, user.name
FROM user
INNER JOIN
(
SELECT user, COUNT(attribute) AS attribute_count
FROM attributes
WHERE attribute IN(...) /* include your set of attributes here */
GROUP BY user
HAVING attribute_count = ? /* include number equal to number of attribute ID's in IN() above */
) AS filter
ON user.id = filter.user