在以下 mysql 查询中,我试图选择所有具有括号中所有功能的产品。我使用的 IN 显然返回具有功能 1 或功能 2 等的产品...我应该使用什么来代替 IN?
SELECT *, f.name as feature, p.productcode as productcode, p.name as name
from product p
left join productfeatures pf on p.productcode = pf.productcode
left join features f on pf.featureid = f.id
where f.id in (1, 2, 3)
group by p.productcode