–Find out the makers that sale PCs but not laptops.
select
distinct maker from product where maker not in(
select distinct maker from product where type = ‘Laptop’)and
type = ‘PC’
from forum:
select
maker from product where type = ‘PC’
except
select
maker from product where type = ‘Laptop’