Je zou een having
. kunnen toevoegen clausule toe aan uw zoekopdracht om ervoor te zorgen dat elke groep van c.id alle vier cp.product_id heeft:
SELECT
c.id as company_id
FROM
`companies` as c
LEFT JOIN `company_products` cp ON cp.company_id = c.id
WHERE
c.id IN (8, 13)
AND cp.product_id IN (1,2,4,8)
GROUP BY
c.id
HAVING COUNT(DISTINCT cp.product_id) = 4;
Als u de productdetails ook nodig heeft, kunt u de bovenstaande query gebruiken als een afgeleide tabel en deze samenvoegen met de producttabel.