in clause to match all items
select * from ItemsPackage where ItemId IN (3,5,2)
This will be match as OR Expression
to make it get ALL item Id you can make it :
select PakageId
from ItemsPackage
where ItemId in (3,5,2)
group by PakageId
having count(PakageId) = 3 -- Count of In clause (3,5,2)
Comments
Post a Comment