天天看點

mongo update批量更新

參考連結  https://docs.mongodb.com/manual/reference/method/db.collection.update/

findAndModify隻會更新一個, update可以批量更新

db.getCollection('cuishou_user').update(
{'id':{$in:[1,2,3,10,12,13]}}, //query
{$set:{'contract_status': NumberInt(1)}},// update 
{multi:true,upsert:false} // 批量更新
)      

繼續閱讀