对不同的事件进行分组和计数

Group and count distinct occurrences

我正在尝试派生查询以获取不同值的计数并显示相关字段。分组由 tempIddate 完成,其中 tempId 可以在一天和一个时间范围内出现 one-to-many 次。

以下是我的做法,

db.getCollection('targetCollection').aggregate(    
{    
   $match:{    
       "user.vendor": 'vendor1',     
       tool: "tool1",     
       date: {    
           "$gte": ISODate("2016-04-01"),    
           "$lt": ISODate("2016-04-04")    
       }    
    }    
},     
{    
   $group:{    
       _id: {     
           tempId: '$tempId',
           month: { $month: "$date" },     
           day: { $dayOfMonth: "$date" },     
           year: { $year: "$date" }     
       },    
       count: {$sum : 1}    
    }     
},
{    
   $group:{    
       _id: 1,    

       count: {$sum : 1}    
    }     
})

此查询生成以下输出,

{
    "_id" : 1,
    "count" : 107
}

这是正确的,但我想将它们按日期分开显示,并显示该日期的特定计数。例如这样的东西,

{
    "date" : 2016-04-01
    "count" : 50
},
    {
    "date" : 2016-04-02
    "count" : 30
},
    {
    "date" : 2016-04-03
    "count" : 27
}

P.S。我不确定如何将这个问题放在一起,因为我对这项技术还很陌生。如果问题需要改进,请告诉我。

以下是我要查询的 mongodb 集合的示例数据,

{
    "_id" : 1,
    "tempId" : "temp1",
    "user" : {
        "_id" : "user1",
        "email" : "user1@email.com",
        "vendor" : "vendor1"
    },
    "tool" : "tool1",
    "date" : ISODate("2016-03-09T08:30:42.403Z")
},...

通过日期

将它们分组
db.getCollection('targetCollection').aggregate([
    {
       $match:{    
           "user.vendor": 'vendor1',     
           tool: "tool1",     
           date: {    
               "$gte": ISODate("2016-04-01"),    
               "$lt": ISODate("2016-04-04")    
           }    
        }    
    },
    {
        $group: {
            _id: {
                date: "$date",
                tempId: "$tempId"
            },
            count: { $sum: 1 }
        }
    }
]);

我自己想出了解决办法。我所做的是,

  • 我首先按 tempIddate
  • 分组
  • 然后我按 date
  • 分组

这打印出了 tempId 的每日 distinct 计数,这是我想要的结果。查询如下,

db.getCollection('targetCollection').aggregate(    
{    
   $match:{    
       "user.vendor": 'vendor1',     
       tool: "tool1",     
       date: {    
           "$gte": ISODate("2016-04-01"),    
           "$lt": ISODate("2016-04-13")    
       }    
    }    
},     
{    
   $group:{    
       _id: {     
           tempId: "$tempId",
           month: { $month: "$date" },     
           day: { $dayOfMonth: "$date" },     
           year: { $year: "$date" }     
       },    
       count: {$sum : 1}    
    }     
},
{    
   $group:{    
       _id: {     
           month:"$_id.month" ,     
           day: "$_id.day" ,     
           year: "$_id.year"     
       },    
       count: {$sum : 1}    
    }     
})