SELECT *
FROM products p
INNER JOIN features_products fp ON p.id = fp.product_id
WHERE fp.feature_id in (1,5,11)
This query returns all Products that have at least one of given Feature ids (1 or 5 or 11).
I need is a list of Products that have all 3 (1 and 5 and 11)
Help!