select b.cust_id, b.order_date
from OrderItems a, Orders b
where a.prod_id = 'BR01' and a.order_num = b.order_num
order by b.order_date asc