I need:
Find manufacturers that sell PCs but not laptops.
This query does not display the correct result:
SELECT maker, type FROM product WHERE type = 'PC' AND type <> 'Laptop'
The way out of this and the correct conclusion:

Result given from this query:
SELECT maker, type FROM product

Table layout:

Even this one does not work:
SELECT maker, type FROM product WHERE type IN('PC') AND type NOT IN('Laptop')
NOTE - type added for clarification only
source share