对于存在子查询的问题,直接由内到外逐层分解,本题只涉及一层,难度较小。
select cust_id,order_date from Orders   
where order_num in   //  根据子查询的结果删选相应的顾客编号
(select order_num from OrderItems    //   首先从 OrdersItems 查询产品编号为“BR01”的订单编号
where prod_id = "BR01")
order by order_date asc