列出每个类别的客户以及该客户在给定类别中下达的订单总数。在查询中显示三个列:CategoryName,CustomerName和TotalOrders(这是给定类别中给定客户的订单的价格*数量)。 TotalOrders按降序对此数据进行排序。
答案 0 :(得分:0)
应该是这个......
select category, customer, sum(price*quantity) as TotalOrders
from yourTable
group by category, customer
order by TotalOrders desc;