select cust_id, order_date
FROM OrderItems AS ot
JOIN Orders AS od ON ot.order_num = od.order_num
AND ot.prod_id = 'BR01'
ORDER BY order_date