Answer:
SELECT Order_date, Ship_Date, Order_priority, Ship_mode
FROM orders
JOIN Shipping ON Orders.Order_id = Shipping.Order_id
WHERE Order_date
BETWEEN TO_DATE('04/01/2018', '%m/%d/%Y') AND TO_DATE('04/15/2018', '%m/%d/%Y')
ORDER BY Order_date
Step-by-step explanation:
The SQL statement above queries a database with four tables shipping, orders, market and product. The query returns four columns from two tables orders and shipping, returning only rows with order dates between April 1 and April 15 of 2018. The tables are joined with the primary key order_id and the dates are parsed with the to_date function. The result is also ordered by the order_date