select cust_id, order_date
from OrderItems as a
join Orders as b
on a.order_num=b.order_num
where prod_id = 'BR01'
order by order_date