Answer:
see explaination
Explanation:
Check the SQL query below:
SELECT c.CustomerName, e.LastName, s.ShipperName, p.ProductName, o.Quantity, od.OrderDate
FROM
Customers c, Employee e, Shippers s, Orders o, OrderDetails od, Product p
WHERE c.customerID = o.customerID AND
e.employeeID = o.employeeID AND
o.orderID = od.orderID AND
od.shipperID = s.shipperID AND
od.productID = p.productID;