使用MongoDB嵌套的$ group和$ sum获取具有相似ProductID的股票数量?

MongoDB中的$group用于按指定的_id表达式对输入文档进行分组。让我们创建一个包含文档的集合-

> db.demo466.insertOne(
... {
...
... "ProductPrice" :150,
... "ProductQuantity" : 1,
... "ProductName" : "Product-1",
... "ActualAmount" :110,
... "ProductProfit" : 40,
... "ProductId" : 1
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e80477cb0f3fa88e2279066")
}
>
> db.demo466.insertOne(
... {
...
... "ProductPrice" :150,
... "ProductQuantity" : 1,
... "ProductName" : "Product-1",
... "ActualAmount" :110,
... "ProductProfit" : 40,
... "ProductId" : 2
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e80477db0f3fa88e2279067")
}
> db.demo466.insertOne(
... {
...
... "ProductPrice" :170,
... "ProductQuantity" : 2,
... "ProductName" : "Product-2",
... "ActualAmount" :130,
... "ProductProfit" : 50,
... "ProductId" : 3
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e80477eb0f3fa88e2279068")
}

find()方法的帮助下显示集合中的所有文档-

> db.demo466.find();

这将产生以下输出-

{ "_id" : ObjectId("5e80477cb0f3fa88e2279066"), "ProductPrice" : 150, "ProductQuantity" : 1,
"ProductName" : "Product-1", "ActualAmount" : 110, "ProductProfit" : 40, "ProductId" : 1 }
{ "_id" : ObjectId("5e80477db0f3fa88e2279067"), "ProductPrice" : 150, "ProductQuantity" : 1,
"ProductName" : "Product-1", "ActualAmount" : 110, "ProductProfit" : 40, "ProductId" : 2 }
{ "_id" : ObjectId("5e80477eb0f3fa88e2279068"), "ProductPrice" : 170, "ProductQuantity" : 2,
"ProductName" : "Product-2", "ActualAmount" : 130, "ProductProfit" : 50, "ProductId" : 3 }

以下是在MongoDB中使用嵌套$group和$sum的查询-

> db.demo466.aggregate([
... {
...    '$group': {
...       '_id': {
...          'ProductName': '$ProductName',
...       },
...       'ActualAmount': {'$sum': '$ActualAmount'},
...       'ProductQuantity': {'$sum': '$ProductQuantity'},
...       'ProductId': {'$addToSet': '$ProductId'},
...    },
... },
... {
...    '$project': {
...       'ProductQuantity': true,
...       'ActualAmount': true,
...       'NumberOfProductInStock': {'$size': '$ProductId'}
...    }
... }])

这将产生以下输出-

{ "_id" : { "ProductName" : "Product-2" }, "ActualAmount" : 130, "ProductQuantity" : 2,
"NumberOfProductInStock" : 1 }
{ "_id" : { "ProductName" : "Product-1" }, "ActualAmount" : 220, "ProductQuantity" : 2,
"NumberOfProductInStock" : 2 }