select c.cust_name cust_name,o.order_num,t.OrderTotal as OrderTotal from Customers c join Orders o on c.cust_id=o.cust_id join (select order_num,ROUND(sum(quantity*item_price),3) as OrderTotal from OrderItems group by order_num) t on t.order_num=o.order_num order by c.cust_name,t.OrderTotal asc 关联查询...