面试题答案
一键面试[
{
$group: {
_id: {
userId: "$用户ID",
category: "$购买商品类别"
},
totalAmount: { $sum: "$购买金额" }
}
},
{
$sort: {
totalAmount: -1
}
}
]