Mysql
 sql >> Database >  >> RDS >> Mysql

Inner Unisci molte a molte tabelle con il filtro in MySQL

Non sono sicuro, vuoi filtrare per nome del prodotto? Forse mi manca qualcosa nella tua domanda, ma penso che dovrebbe funzionare

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'