gpt4 book ai didi

Mongodb,汇总 $group 中项目的 nr

转载 作者:可可西里 更新时间:2023-11-01 10:17:17 24 4
gpt4 key购买 nike

我正在做一些聚合以获得关于类别中有多少产品的一些统计数据。

经过一些管道后我归结为:

[
{
topCategory: "Computer",
mainCategory: "Stationary"
},
{
topCategory: "Computer",
mainCategory: "Laptop"
},
{
topCategory: "Computer",
mainCategory: "Stationary"
},
{
topCategory: "Computer",
mainCategory: "Stationary"
},

]

想要的输出:

[
{
name: "Computer",
count: 4,
mainCategories: [
{
name: "Laptop",
count: 2
},
{
name: "Stationary",
count: 2
}
]
}
]

到目前为止我的查询:

let query = mongoose.model('Product').aggregate([
{
$match: {
project: mongoose.Types.ObjectId(req.params.projectId)
}
},
{ $project: {
_id: 0,
topCategory: '$category.top',
mainCategory: '$category.main',
}
},
]);

我知道我需要结合使用 $group$sum。我尝试了不同的方法,但无法正常工作。

最佳答案

在这种情况下,首先您应该按 mainCategory 分组,然后按如下所示按 topCategory 分组

db.collection.aggregate({
$group: {
_id: "$mainCategory",
"count": {
$sum: 1
},
"data": {
"$push": "$$ROOT"
}
}
}, {
"$unwind": "$data"
}, {
"$group": {
"_id": "$data.topCategory",
"count": {
"$sum": 1
},
"mainCategories": {
"$addToSet": {
"name": "$_id",
"count": "$count"
}
}
}
}).pretty()

关于Mongodb,汇总 $group 中项目的 nr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41649807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com