select a.cust_id ,a.order_date from Orders as a right join OrderItems as b on a.order_num = b.order_num where b.prod_id = 'BR01' select a.cust_id ,a.order_date from Orders as a inner join OrderItems as b where a.order_num = b.order_num and b.prod_id = 'BR01' select a.cust_id ,a.order_date from Order...