I have a table called ProductClassification with two columns ‘ProductID, ClassificationID’
ProductID, ClassificationID
10408, 1749
10408, 1750
A ProductID could have multiple ClassificationID. How would I extract a single product if I query multiple different ClassificationID.
for example: the below doesn’t work
SELECT Product.ID, Product.Name FROM
Product, ProductClassification WHERE
ProductClassification.ClassificationID = '1750' AND
ProductClassification.ClassificationID = '1749'
ClassificationIDcan’t be1750AND1749.1750 OR 1749allows eahc indivudal record to filter through.Product.IDboth records came through.