So I have a set of user_id who buy at store_id.
Id like to retrieve a list of users who have made purchases at store_id 1 exclusively.
Meanining, if they bought at store_id 1 and 2, they need to be filtered out.
I could say WHERE store_id IN (1) and store_id NOT IN (2,3,4)?
Also this might not be an options because there are too many store IDs to get a list.