1

要件: ポイント < 90 のすべてのドキュメントを取得し、「ポイント」を +20 ずつ増やします データ:

 { "_id" : 1, "student" : 1, "type" : "exam", "point" : 115 }
    { "_id" : 2, "student" : 2, "type" : "exam", "point" : 85 }
    { "_id" : 3, "student" : 3, "type" : "exam", "point" : 115 }

Query tried : 
// query below 

db.points.update({},{$inc:{point:20},point:{lt:110}},{multi:true})

On executing : fn[0] == '$'is seen and query has not affected any changes.
4

2 に答える 2