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

distinto con più campi e con dove condizione in mongodb

Dovrai utilizzare aggregate domande per raggiungere questo obiettivo. Ecco un esempio che funzionerà in shell (che può essere tradotto facilmente in Mongoose):

db.gpc.aggregate([
    // your where clause: note="test2" and notetwo = "meet2"
    {"$match" : {note:"test2", notetwo:"meet2"}}, 
    // group by key, score to get distinct
    {"$group" : {_id : {key:"$key", score:"$score"}}}, 
    // Clean up the output
    {"$project" : {_id:0, key:"$_id.key", score:"$_id.score"}}
])

Uscita:

{ "result" : [ { "key" : "SAGAR33", "score" : 37 } ], "ok" : 1 }