Ако се преструвате, че филтърът ви е в таблица:
select *
from product p
where not exists (
select 1
from attributes a
where a.product_id = p.product_id
and not exists(
select 1
from filter f
where f.id_attribute = a.id_attribute))
Ако беше в конструирана заявка:
select *
from product p
where not exists (
select 1
from attributes a
where a.product_id = p.product_id
and attribute_id not in (<list>))
Това не ми е на ум, така че може да има правописни грешки.