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