1. In the Sales Orders database, make a mailing list of customers who ordered bikes in March 2018. Include a Type column that says Customer. Make sure each distinct customer only appears once. (9 rows)
1
Expert's answer
2020-03-22T17:04:33-0400
The answer of the given question will be as per the below
SELECT DISTINCT email_id FROM `customer`
WHERE order_date<2020-12-02 AND
order_date>2020-12-02
Comments
Leave a comment