SELECT c.cust_name cust_name, o.order_num order_num, SUM(oi.quantity * oi.item_price) OrderTotal FROM Customers c INNER JOIN Orders o ON c...