题解 | #返回顾客的电子邮件(一)#
返回购买 prod_id 为 BR01 的产品的所有顾客的电子邮件(一)
https://www.nowcoder.com/practice/962b16554fbf4b99a87f4d68020c5bfb
对于嵌套查询,只需记住由内到外逐层梳理,思路就会很清晰:
select cust_email from Customers where cust_id in // 第三层:基于第二层查询的顾客id,从Customers表中查询顾客邮件 (select cust_id from Orders where order_num in // 第二层:基于第一层中查询的订单号,从Orders表中查询顾客id (select order_num from OrderItems // 第一层:从OrderItems表中查询订单号 where prod_id = "BR01"))