select c.cust_email
from OrderItems a, Orders b, Customers c
where a.prod_id = 'BR01' and a.order_num = b.order_num and b.cust_id = c.cust_id
select c.cust_email
from OrderItems a, Orders b, Customers c
where a.prod_id = 'BR01' and a.order_num = b.order_num and b.cust_id = c.cust_id