MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Ottieni date ISO distinte per giorni, mesi, anni

È necessario raggruppare il documento dopo la proiezione e utilizzare $addToSet operatore accumulatore

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