MS Access & SQL

Viewed 17

When including the AND part of the WHERE clause, the SQL statement is not returning any output:

SELECT Product_Name AS PN, Product_Category AS PC
FROM JM_Products
WHERE Product_Category = 'Household & Personal Care' 
  AND (Product_Category = 'Health & Wellness')
ORDER BY Product_Name DESC;
0 Answers
Related