select t1.cust_name, t2.order_num, sum(t3.quantity * t3.item_price) as OrderTotal from Customers t1, Orders t2, OrderItems t3 where t1.cust_id = t2.cust_id and t2.order_num = t3.order_num group by cust_name,order_num order by 1,2 FROM子句中使用了三个表的别名,分别是"t1&qu...