db.users.action({filter},{projection},{options})
- multi
如果我們想把所有有名字(filter)的數(shù)據(jù)的age字段(projection)設(shè)置(set)為19
db.users.update({name:{$exists:true}},{$set:{age:19}})
返回結(jié)果為
Updated 1 existing record(s) in 2ms
這顯然不符合我們的要求两踏,因此我們需要用到multi操作
db.users.update({name:{$exists:true}},{$set:{age:19}},{multi:true})
返回結(jié)果為
Updated 5 existing record(s) in 64ms