这是我正在处理的文档的示例:
{
"_id" : ObjectId("5b35019563726438989381d3"),
"ref" : "123",
"nom" : "pc",
"Revendeurs" : [
{
"revendeur" : "Tdiscount",
"selecteur_prix" : ".price",
"hist_prix" : [
{
"date" : ISODate("2018-06-28T00:00:00Z"),
"prix" : 200
},
{
"date" : ISODate("2018-06-27T00:00:00Z"),
"prix" : 100.8}
]
}
]
}
我想查询"prix"字段的最大值。 我还需要按"reveneur"列出所有"大奖赛",但是 Mongodb只返回空结果。
执行此查询时:
db.Tunicompare.aggregate([
{ $unwind: '$Revendeurs' },
{ $group: { _id: null, max: { $max: '$Revendeurs.hist_prix.prix' } } },
{ $project: { max: 1, _id:0 } }
])
我得到这个结果(而不是最多只得到 200(
{ "max" : [ 200, 100.8 ] }
如果你想在外部和内部列表中找到最大值,请做这样的事情(全局最大值(:
db.Tunicompare.aggregate([
{ $unwind: '$Revendeurs' },
{ $unwind: '$Revendeurs.hist_prix' },
{ $group: { _id: null, max: { $max: '$Revendeurs.hist_prix.prix' } } },
{ $project: { max: 1, _id:0 } }
])
输出
/* 1 */
{
"max" : 200.0
}
with $reduce。试一试MongoPlayground:
db.collection.aggregate([
{
$unwind: "$Revendeurs"
},
{
$group: {
_id: null,
prixArr: {
$push: "$Revendeurs.hist_prix.prix"
}
}
},
{
$project: {
"_id": 0,
"max": {
$reduce: {
input: "$prixArr",
initialValue: 0,
in: {
$max: "$$this"
}
}
}
}
}
])
输出:
[
{
"max": 200
}
]