I was surprised to find that the following example code only updates a single document:
> db.test.save({"_id":1, "foo":"bar"});
> db.test.save({"_id":2, "foo":"bar"});
> db.test.update({"foo":"bar"}, {"$set":{"test":"success!"}});
> db.test.find({"test":"success!"}).count();
1I know I can loop through and keep updating until they're all changed, but that seems terribly inefficient. Is there a better way?
13 Answers
Multi update was added recently, so is only available in the development releases (1.1.3). From the shell you do a multi update by passing true as the fourth argument to update(), where the the third argument is the upsert argument:
db.test.update({foo: "bar"}, {$set: {test: "success!"}}, false, true);For versions of mongodb 2.2+ you need to set option multi true to update multiple documents at once.
db.test.update({foo: "bar"}, {$set: {test: "success!"}}, {multi: true})For versions of mongodb 3.2+ you can also use new method updateMany() to update multiple documents at once, without the need of separate multi option.
db.test.updateMany({foo: "bar"}, {$set: {test: "success!"}}) 3 Starting in v3.3 You can use updateMany
db.collection.updateMany( <filter>, <update>, { upsert: <boolean>, writeConcern: <document>, collation: <document>, arrayFilters: [ <filterdocument1>, ... ] }
)In v2.2, the update function takes the following form:
db.collection.update( <query>, <update>, { upsert: <boolean>, multi: <boolean> }
) 0 For Mongo version > 2.2, add a field multi and set it to true
db.Collection.update({query}, {$set: {field1: "f1", field2: "f2"}}, {multi: true }) 0 I've created a way to do this with a better interface.
db.collection.find({ ... }).update({ ... })-- multi updatedb.collection.find({ ... }).replace({ ... })-- single replacementdb.collection.find({ ... }).upsert({ ... })-- single upsertdb.collection.find({ ... }).remove()-- multi remove
You can also apply limit, skip, sort to the updates and removes by chaining them in beforehand.
If you are interested, check out Mongo-Hacker
3In the MongoDB Client, type:
db.Collection.updateMany({}, $set: {field1: 'field1', field2: 'field2'})New in version 3.2
Params::
{}: select all records updatedKeyword argument multi not taken
To Update Entire Collection,
db.getCollection('collection_name').update({},
{$set: {"field1" : "value1", "field2" : "value2", "field3" : "value3"}},
{multi: true }) MongoDB will find only one matching document which matches the query criteria when you are issuing an update command, whichever document matches first happens to be get updated, even if there are more documents which matches the criteria will get ignored.
so to overcome this we can specify "MULTI" option in your update statement, meaning update all those documnets which matches the query criteria. scan for all the documnets in collection finding those which matches the criteria and update :
db.test.update({"foo":"bar"},{"$set":{"test":"success!"}}, {multi:true} ) The following command can update multiple records of a collection
db.collection.update({},
{$set:{"field" : "value"}},
{ multi: true, upsert: false}
) 0 All latest versions of mongodb updateMany() is working fine
db.getCollection('workers').updateMany({},{$set: {"assignedVehicleId" : "45680"}}); I had the same problem , and i found the solution , and it works like a charm
just set the flag multi to true like this :
db.Collection.update( {_id_receiver: id_receiver}, {$set: {is_showed: true}}, {multi: true} /* --> multiple update */ , function (err, updated) {...});i hope that helps :)
You can use.`
Model.update({ 'type': "newuser" }, { $set: { email: "", phoneNumber:"0123456789" } }, { multi: true }, function(err, result) { console.log(result); console.log(err); }) ` The updateMany() method has the following form:
db.collection.updateMany( <filter>, <update>, { upsert: <boolean>, writeConcern: <document>, collation: <document>, arrayFilters: [ <filterdocument1>, ... ], hint: <document|string> // Available starting in MongoDB 4.2.1 }
)The restaurant collection contains the following documents:
{ "_id" : 1, "name" : "Central Perk Cafe", "violations" : 3 }
{ "_id" : 2, "name" : "Rock A Feller Bar and Grill", "violations" : 2 }
{ "_id" : 3, "name" : "Empire State Sub", "violations" : 5 }
{ "_id" : 4, "name" : "Pizza Rat's Pizzaria", "violations" : 8 }The following operation updates all documents where violations are greater than 4 and $set a flag for review:
try { db.restaurant.updateMany( { violations: { $gt: 4 } }, { $set: { "Review" : true } } );
} catch (e) { print(e);
} Thanks for sharing this, I used with 2.6.7 and following query just worked,
for all docs:
db.screen.update({stat:"PRO"} , {$set : {stat:"pro"}}, {multi:true})for single doc:
db.screen.update({stat:"PRO"} , {$set : {stat:"pro"}}, {multi:false}) 0