現有如下格式的集合
"objectiveQuestions" : [{
"answer" : "A",
"index" : 2,
"isCorrect" : 1,
"subjectId" : 5967
}, {
"subjectId" : 5968,
"answer" : "A",
"isCorrect" : 0,
"index" : 3
}, ...]
現在要為每個在objectiveQuestions
元素添加score
字段, 並給初始值2
. 請問如何構造update
語句呢
世界只因有你2017-04-25 09:03:49
加個multi: true
http://docs.mongodb.org/manual/reference/method/db.collection.update/