gpt4 book ai didi

mongodb - 如何在mongo聚合中将数字转换为月份

转载 作者:行者123 更新时间:2023-12-03 18:37:42 25 4
gpt4 key购买 nike

我正在尝试这个 mongo 聚合我得到了输出,但我的要求是获得月份名称。我正在尝试不同类型的聚合仍然没有获得需求输出,任何人都可以帮助我。

    db.collection.aggregate([ 
{ $match: {
CREATE_DATE: {
$lte:new Date(),
$gte: new Date(new Date().setDate(new
Date().getDate()-120)
)
}
} },
{ $group: {
_id:{
month: { $month: "$CREATE_DATE" },
year: { $year: "$CREATE_DATE" }
},
avgofozone:{$avg:"$OZONE"}
} },
{ $sort:{ "year": -1 } },
{ $project: {
year: '$_id.year',
avgofozone: '$avgofozone',
month: '$_id.month',_id:0
} }
])

截至目前的输出:
/* 1 */
{
"year" : 2018,
"avgofozone" : 16.92,
"month" : 4
}

/* 2 */
{
"year" : 2017,
"avgofozone" : 602.013171402383,
"month" : 12
}

预期输出:
/* 1 */
{
"year" : 2018,
"avgofozone" : 16.92,
"month" : APRIL
}

/* 2 */
{
"year" : 2017,
"avgofozone" : 602.013171402383,
"month" : DECEMBER
}

最佳答案

我认为这在 mongo 中是不可能的。但是我们可以使用 $let 将 number 映射到月的字符串版本。您可以添加以下作为将数字映射到字符串的最后阶段。

{
$addFields: {
month: {
$let: {
vars: {
monthsInString: [, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', ...]
},
in: {
$arrayElemAt: ['$$monthsInString', '$month']
}
}
}
}
}

您可以提供任何所需格式的月份字符串。例如,我提供了 [, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', ...]

关于mongodb - 如何在mongo聚合中将数字转换为月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49870419/

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