select a.cust_name, b.order_num, sum(c.quantity * c.item_price) as OrderTotal from Customers a left join Orders b on a.cust_id = b.cust_id join OrderItems c on b.order_num = c.order_num group by a.cust_id, a.cust_name, b.order_num order by a.cust_name, b.order_num 不太理解这个题通过率才35....a,b,表左连接,再内连接c, 左连...