# select cust_id ,cust_name from Customers c,Orders o where c.cust_id=o.cust_id # select (quantity*item_price) as OrderTotal from Orders o, OrderItems oi where o.order_num=oi.order_num select cust_name , o.order_num , (quantity*item_price) as OrderTotal from Customers c , Orders o, OrderItems...