Sample Data (assume table is called Chases):
ItemID CollectorID CollectorStatus
101 205 1
102 205 2
103 208 2
104 208 3
105 208 2
106 209 1
107 209 2
108 210 2
I would like to write a single query that will give the ItemIDs and the CollectorID for ONLY those Collections (a Collection is all records with the same CollectorID) where ALL items have at least a status of 2.
Appreciate any help on this!
ItemID CollectorID CollectorStatus
101 205 1
102 205 2
103 208 2
104 208 3
105 208 2
106 209 1
107 209 2
108 210 2
I would like to write a single query that will give the ItemIDs and the CollectorID for ONLY those Collections (a Collection is all records with the same CollectorID) where ALL items have at least a status of 2.
Appreciate any help on this!