Ik weet het niet zeker, wil je filteren op productnaam? Misschien mis ik iets in je vraag, maar ik denk dat dit zou moeten werken
select customer_id
from
bought b
inner join customer c on b.customer_id = b.customer_id
inner join product p on p.product_id = b.product_id
where p.name = 'a'