Hi vail,
Here I am making use of Microsoft’s Northwind Database. You can download it from here.
SQL
SELECT od.OrderID,c.CustomerID,c.ContactName,pr.ProductName,od.UnitPrice,od.Quantity,od.Discount
FROM [Order Details] od
INNER JOIN Products pr ON pr.ProductID = od.ProductID
INNER JOIN Orders o ON o.OrderID = od.OrderID
INNER JOIN Customers c ON c.CustomerID = o.CustomerID
ORDER BY od.OrderID