MongoDb 和查询

例如,我在 MongoDB 中有以下数据:

{ "_id" : ObjectId("524091f99c49c4c3f66b0e46"), "hour" : 10, "incoming", 100}
{ "_id" : ObjectId("5240a045dbeff33c7333aa51"), "hour" : 11, "incoming", 200}
{ "_id" : ObjectId("5240a2ecda0d37f35c618aca"), "hour" : 12, "incoming", 300}

现在我想查询“ SUM 11-12之间的传入数量”(结果应该是500) ,如何使用 Mongo Shell 执行此操作?

122635 次浏览

正如 llovet 所建议的那样,聚合框架是一种可行的方法:

db.CollectionNameGoesHere.aggregate({ $match: {
$and: [
{ hour: { $gte: 11 } },
{ hour: { $lte: 12 } }
]
} },
{ $group: { _id : null, sum : { $sum: "$incoming" } } });

还可以通过在管道的末尾添加 $project 运算符,将生成的文档形状设置为只包含和,如下所示:

{ $project: { _id: 0, sum: 1 } }

使用 猫鼬的一些例子:

  1. 计算产品价格总和:
Products.aggregate([ { $match: {} }, { $group:
{ _id : null, sum : { $sum: "$Price" } }
}])
.then(res => console.log(res[0].sum));

({ $match: {} },可以移除。)


  1. 各类产品的价格总和:
Products.aggregate([{ $group:
{ _id : '$Category', sum : { $sum: "$Price" } }
}])
.then(res => console.log(res));