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;