MongoDB中组内的聚合组

时间:2016-05-02 01:21:27

标签: node.js mongodb grouping aggregates

使用aggregate我按天检索按日分组的所有数据:

db.collection('checkpoint').aggregate
[
    { '$match': {'id_journey': journey.id_journey} },
    { '$sort': { 'when': 1} },
    {
         '$group': {
             '_id': { $dateToString: { format: '%Y-%m-%d', date: '$when' } },
             'day': {                                    
                 '$push': {
                     'id': '$id_checkpoint',
                     'when': '$when',
                     'type': '$type',
                     'url_media': '$url_media'
                 }
             }
         }
    },  
    { '$sort': { '_id': 1 } },
    {
        '$project': {
            '_id': 1,
            'day': 1
        }
    }
], function(err, result) {
    res.json(result);   
});

结果是:

[{
    _id: "2016-04-22",
    day: [{
        id: "c571be034449bee845f2b43211",
        when: "2016-04-22T20:51:00.190Z",
        type: "picture",
        url_media: "my_photo_1.jpg"
    }]
}, {
    _id: "2016-04-23",
    day: [{
        id: "c571be034449bee845f2b43222",
        when: "2016-04-23T20:50:00.190Z",
        type: "picture",
        url_media: "my_photo_2.jpg"
    }, {
        id: "c571be034449bee845f2b43233",
        when: "2016-04-23T20:51:00.190Z",
        type: "picture",
        url_media: "my_photo_3.jpg"
    }]
}]

这是对的。

但是如果我需要在每天内分组一小时(使用MongoDB的$hour Date Aggregation Operators)怎么办? 想要的结果是每个小组被分成几小时组:它可能吗?

1 个答案:

答案 0 :(得分:0)

是的,你可以做到。首先你需要投射时间。现在您在聚合管道中有小时字段。您可以轻松地在小时字段中进行分组