模拟for sql中的group_concat

时间:2014-02-11 04:46:51

标签: mongodb mongodb-query aggregation-framework

在汇总过程中我得到了这些数据:

{
    "_id" : "billing/DefaultController/actionIndex",
    "min_time" : 0.033,
    "max_time" : 5.25,
    "exec_time" : 555.490999999997,
    "qt" : 9059,
    "count" : 2,
    "date" : [ 
        ISODate("2014-02-10T00:00:00.000Z"), 
        ISODate("2014-02-11T00:00:00.000Z")
    ]
},

如何更改我的查询:

db.page_speed_reduced.aggregate([
    {$group: {
        _id: "$value.route",
        min_time: {$min: "$value.min_time"},
        max_time: {$max: "$value.max_time"},
        exec_time: {$sum: "$value.exec_time"},
        qt: {$sum: "$value.qt"},
        count: {$sum: NumberInt(1)},
        date: {$push: "$_id.date"},
    }}
]);

将“$ date”作为连接字符串:

2014-02-10, 2014-02-11

更新

我尝试了这个变种,但是mongodb产生了错误:

db.page_speed_reduced.aggregate([
    {$group: {
        _id: "$value.route",
        min_time: {$min: "$value.min_time"},
        max_time: {$max: "$value.max_time"},
        exec_time: {$sum: "$value.exec_time"},
        qt: {$sum: "$value.qt"},
        count: {$sum: NumberInt(1)},
        date: {$push: "test sting"},
    }},
    {$project: {
        'date': {$concat: ['$date']}
        //'date': {$concat: '$date'} //some error
    }}
]);

uncaught exception: aggregate failed: {
 "errmsg" : "exception: $concat only supports strings, not Array",
 "code" : 16702,
 "ok" : 0
}
'date': {$concat: '$date'}

2 个答案:

答案 0 :(得分:3)

根据目前的评论,目前还不清楚你的分组或者你想要的最终结果,除了说你想把你的日期连接到像“只是一天”这样的东西,没有小时或分钟在一起。大概你想要那些不同的日子用于某种目的。

您可以在日期中使用管道中的各种Date Operators,也是$concat运算符。不幸的是,所有日期运算符都会产生一个整数作为结果,对于所需的日期字符串, $ concat 只能用于字符串。另一个问题是你不能将>整数转换为聚合中的字符串类型。

但是你可以使用子文档,这里我们只使用日期:

db.record.aggregate([
    // Unwind the array to work with it
    {$unwind: "$date"},

    // project into our new 'day' document
    {$project:{ 
        day: { 
            year: {$year: "$date"},
            month: {$month: "$date"}, 
            day: {$dayOfMonth: "$date"}
        }
     } },

     // optionalally sort if date order is important [ oldest -> newest ] 
     {$sort: { "day.year": -1, "day.month": -1, "day.day": -1}},

     // Wind back unique values into the array
     {$group: {_id:"$_id", days: {$addToSet: "$day"} }}
])

所以,它不是一个字符串,但它很容易被后处理成一个字符串,但最重要的是它被分组和排序。

如果您希望将此方式的唯一dates作为数组结尾,或者是否要按这些日期对总计进行分组,则原则保持不变。因此,首先要记住使用日期运算符的$ unwind和$ project部分。

<强> - 编辑 -

感谢this post中显示的社区, $ substr 存在未记录的行为,其中整数可以转换为字符串。

db.record.aggregate([
    // Unwind the array to work with it
    {$unwind: "$date"},

    // project into our new 'day' document
    {$project:{ 
        day: { 
            year: {$year: "$date"},
            month: {$month: "$date"}, 
            day: {$dayOfMonth: "$date"}
        }
     } },

     // optionalally sort if date order is important [ oldest -> newest ] 
     {$sort: { "day.year": -1, "day.month": -1, "day.day": -1}},

     // now we are going to project to a string ** magic @heinob **
     {$project: { 
         day: {$concat: [
             {$substr: [ "$day.year", 0, 4 ]},
             "-",
             {$substr: [ "$day.month", 0, 2 ]},
             "-",
             {$substr: [ "$day.day", 0, 2 ]}
         ]}
     }},

     // Wind back unique values into the array
     {$group: {_id:"$_id", days: {$addToSet: "$day"} }}
])

现在days是字符串。正如我之前提到的,如果排序对您很重要,那么最好的方法是投入到已完成的文档类型并对数字键进行排序。当然,改变日期的$项目可以简化到$ group阶段,这可能是你在处理整个文档时想要做的事情。

答案 1 :(得分:0)

此链接可能会给您一个提示:

http://docs.mongodb.org/manual/reference/operator/aggregation/concat/

年:{$ concat:[$ year]}