1

我正在尝试派生一个查询以获取不同值的计数并显示相关字段。分组是由一天内和一个时间范围内可能发生的时间tempIddate地点完成的。tempIdone-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
}

PS我不知道如何把这个问题放在一起,因为我对这项技术很陌生。如果问题需要改进,请告诉我。

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

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

2 回答 2

2

我自己想出了解决方案。我所做的是,

  • 我首先按tempId和分组date
  • 然后我按date

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

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}    
    }     
})
于 2016-04-12T11:06:32.060 回答
0

通过日期对它们进行分组

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 }
        }
    }
]);
于 2016-04-12T10:11:07.607 回答