Get distinct ISO dates by days, months, year

感情迁移 提交于 2019-12-31 00:46:32

问题


I want to get a distinct set of years and months for all document objects in my MongoDB.

For example, if documents have dates:

  • 2015/08/11
  • 2015/08/11
  • 2015/08/12
  • 2015/09/14
  • 2014/10/30
  • 2014/10/30
  • 2014/08/11

Return unique months and years for all documents, ex:

  • 2015/08
  • 2015/09
  • 2014/10
  • 2014/08

Schema snippet:

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

I tried using distinct against schema field date:

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

But this gave duplicate dates. Output snippet:

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")

So the question is:

  • a: How can I accomplish the above?
  • b: Is it possible to specify which part of the date you want distinct? Like distinct('date.month'...)?

EDIT: I've found u can get these dates and such with the following query, however the results are not distinct:

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

Output: duplicates

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

回答1:


You need to group your document after the projection and use $addToSet accumulator operator

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



回答2:


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


来源:https://stackoverflow.com/questions/33109897/get-distinct-iso-dates-by-days-months-year

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!