按天,月,年

时间:2015-10-13 18:21:47

标签: mongodb date aggregation-framework

我想为MongoDB中的所有文档对象获取一组不同的年份和月份。

例如,如果文档有日期:

  • 2015年8月11日
  • 2015年8月11日
  • 2015年8月12日
  • 2015年9月14日
  • 二○一四年十月三十〇日
  • 二○一四年十月三十〇日
  • 2014/08/11

返回所有文件的唯一月份和年份,例如:

  • 2015/08
  • 2015/09
  • 十分之二千零十四
  • 2014/08

架构摘要:

var myObjSchema = mongoose.Schema({
        date: Date,
        request: {
           ...

我尝试对架构字段distinct使用date

db.mycollection.distinct(' date',{},{})

但这给出了重复日期。输出片段:

ISODate("2015-08-11T20:03:42.122Z"),
ISODate("2015-08-11T20:53:31.135Z"),
ISODate("2015-08-11T21:31:32.972Z"),
ISODate("2015-08-11T22:16:27.497Z"),
ISODate("2015-08-11T22:41:58.587Z"),
ISODate("2015-08-11T23:28:17.526Z"),
ISODate("2015-08-11T23:38:45.778Z"),
ISODate("2015-08-12T06:21:53.898Z"),
ISODate("2015-08-12T13:25:33.627Z"),
ISODate("2015-08-12T14:46:59.763Z")

所以问题是:

  • a:我怎样才能完成上述工作?
  • b:是否可以指定您想要分开的日期部分?喜欢distinct('date.month'...)
编辑:我发现您可以通过以下查询获取这些日期,但结果并不明显:

db.mycollection.aggregate( 
     [ 
         { 
             $project : { 
                  month : { 
                      $month: "$date" 
                  }, 
                  year : { 
                      $year: "$date" 
                  }, 
                  day: { 
                      $dayOfMonth: "$date" 
                  } 
              }
          } 
      ] 
  );

输出:重复

{ "_id" : "", "month" : 7, "year" : 2015, "day" : 14 }
{ "_id" : "", "month" : 7, "year" : 2015, "day" : 15 }
{ "_id" : "", "month" : 7, "year" : 2015, "day" : 15 }

2 个答案:

答案 0 :(得分:8)

您需要在投影后对文档进行分组,并使用$addToSet累加器运算符

db.mycollection.aggregate([
    { "$project": { 
         "year": { "$year": "$date" }, 
         "month": { "$month": "$date" } 
    }},
    { "$group": { 
        "_id": null, 
        "distinctDate": { "$addToSet": { "year": "$year", "month": "$month" }}
    }}
])

答案 1 :(得分:-1)

db.mycollection.aggregate(
[
{
"$project": { 
                     "year": { "$year": "$date" }, 
                     "month": { "$month": "$date" }
            }
},{ $group : { 
                    "_id" :{"year" : "$year"  }
               }
},
{
$sort: {'_id': -1
}
   }
])