我可以使用点表示法在mongoDB中聚合嵌入式文档吗?

时间:2016-02-10 21:18:00

标签: mongodb aggregation-framework

我在MongoDb中有一个这样的文档:

{
        "_id" : ObjectId("56b88d5f2628a6bca1b17f99"),
        "first_name" : "JAMES",
        "last_name" : "SMITH",
        "accounts" : [
                {
                        "account_type" : "Savings",
                        "account_balance" : 8995952.153640702,
                        "currency" : "PESO"
                },
                {
                        "account_type" : "Checking",
                        "account_balance" : 3901436.5580737568,
                        "currency" : "USD"
                }
        ]
}

我想按" last_name"分组和" accounts.account_type"并总结每一个相关的平衡。

我尝试像这样的点符号,但我有错误,我无法找到这种聚合的解释:

db.bank_data.aggregate([ 
{$group:{_id: "$last_name",accounts.account_type:"$accounts.acount_type",
 total:{$sum:"$accounts.account_balance"}}}])

1 个答案:

答案 0 :(得分:9)

首先考虑在聚合管道中展开帐户字段,然后使用随后选择的属性进行分组。

    db.bank_data.aggregate([
        {$unwind: '$accounts' },
        {$group: { _id: { last_name : "$last_name" , account_type: "$accounts.account_type" },
                  total:{$sum:"$accounts.account_balance"}
                 }
        }]);