यदि आप यह दिखावा करते हैं कि आपका फ़िल्टर किसी तालिका में है:
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>))
यदि यह एक निर्मित क्वेरी में था:
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>))
यह मेरे सिर के ऊपर से है, इसलिए इसमें टाइपो हो सकते हैं।