题解 | #返回 prod_id 为 BR01 的电子邮件#
返回购买 prod_id 为 BR01 的产品的所有顾客的电子邮件(一)
https://www.nowcoder.com/practice/962b16554fbf4b99a87f4d68020c5bfb
这里使用较为简单粗暴的三表连接后再进行条件筛选
select cust_email from Customers c join Orders o on c.cust_id=o.cust_id join OrderItems o2 on o.order_num=o2.order_num where o2.prod_id='BR01';