题解
方法一:层层嵌套
select cust_email from Customers where cust_id in ( select cust_id from Orders where order_num in ( select order_num from OrderItems where prod_id = 'BR01' ) )方法二:连接三表:
select Customers.cust_email from Customers join Orders on Customers.cust_id = Orders.cust_id join OrderItems on Orders.order_num = OrderItems.order_num where OrderItems.prod_id = 'BR01'