Potresti usare HAVING COUNT
. Anche il numero dovrebbe essere dinamico.
SELECT person_id
FROM interest
WHERE interest_category IN ( 'music', 'movie', 'sport');
GROUP BY person_id
HAVING COUNT(*) = 3;
Potresti usare HAVING COUNT
. Anche il numero dovrebbe essere dinamico.
SELECT person_id
FROM interest
WHERE interest_category IN ( 'music', 'movie', 'sport');
GROUP BY person_id
HAVING COUNT(*) = 3;