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

Come ottenere l'elenco degli utenti il ​​cui compleanno è oggi in MongoDB

Puoi utilizzare il framework di aggregazione con $dayOfYear operatore. Ho presupposto che il giorno di nascita sia memorizzato nel campo birthday e che esiste un campo chiamato name :

db.data.aggregate(
[
        {
                "$project" : {
                        "_id" : 0,
                        "name" : 1,
                        "birthday" : 1,
                        "score" : 1,
                        "todayDayOfYear" : {
                                "$dayOfYear" : new Date()
                        },
                        "birthDayOfYear" : {
                                "$dayOfYear" : "$birthday"
                        }
                }
        },
        {
                "$project" : {
                        "name" : 1,
                        "birthday" : 1,
                        "score" : 1,
                        "isBirthDay" : {
                                "$eq" : [
                                        "$todayDayOfYear",
                                        "$birthDayOfYear"
                                ]
                        }
                }
        },
        {
                "$match" : {
                        "isBirthDay" : true,
                        "score" : { $gt: 100}
                }
        }
]
)