Você precisa filtrar antes agregando:
select s.buyer_id
from sales s join
product p
on s.product_id = p.product_id
where p.product_name = 'iPhone'
group by s.buyer_id;
Ou use uma função de agregação que conte as correspondências:
having sum(p.product_name = 'iPhone') > 0