以下是我正在处理的文档的示例:
{
"_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”字段的最大值。 我还需要按“ revendeur”列出所有“ prix”,但 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 ] }
答案 0 :(得分:1)
如果要在整个外部和内部列表中找到最大值,请执行以下操作(全局最大值):
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
}
答案 1 :(得分:1)
使用$reduce。试试看MongoPlayground:
Node<Integer> stackNode = new Node<>(1);
Stack<Integer> myStack = new Stack<>(stackNode);
输出:
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"
}
}
}
}
}
])