我使用MongoDB v3.4.4在我的计算机上创建了一个MongoDB,现在我想迁移到Raspberry Pi和MongoDB(v 2.4.10),但是当我想执行这个查询时它不起作用因为版本。
db.product.aggregate(
{
"$project": {
"price": 1,
"y": {
"$year": "$date"
},
"m": {
"$month": "$date"
}
}
},
{
"$group": {
"_id": {
"year": "$y",
"month": "$m"
},
"total": {
"$sum": "$price"
},
}
},
{
$sort: {
"_id.year": 1,
"_id.month": 1
}
})
有没有办法将此查询翻译成MongoDB 2.4.10?
错误是这样的:
提前致谢!