Skip to content

Instantly share code, notes, and snippets.

@sym3tri
Created March 7, 2011 06:15
Show Gist options
  • Select an option

  • Save sym3tri/858142 to your computer and use it in GitHub Desktop.

Select an option

Save sym3tri/858142 to your computer and use it in GitHub Desktop.
How to update a single field in a MongoDB collection for all documents matching a specific criteria
// FROM: http://www.mongodb.org/display/DOCS/Updating#Updating-update%28%29
//
// db.collection.update( criteria, objNew, upsert, multi )
// criteria - query which selects the record to update;
// objNew - updated object or $ operators (e.g., $inc) which manipulate the object
// upsert - if this should be an "upsert"; that is, if the record does not exist, insert it
// multi - if all documents matching criteria should be updated
//
// SQL VERSION:
// UPDATE myTable SET dateField = '2011-01-01' WHERE condField = 'condValue'
db.myCollection.update({condField: 'condValue'}, { $set: { dateField: new Date(2011, 0, 1)}}, false, true);
@o-nix

o-nix commented Mar 19, 2012

Copy link
Copy Markdown

Yay. Thank you. :)

@PandaWhisperer

Copy link
Copy Markdown

Works! The 4th parameter was what I was missing.

@sanat51289

Copy link
Copy Markdown

The following query doesn't work, when I want to update subfield (which is an int) of one of the parent fields of all documents in a collection:

db.myCollection.update( {}, { $set: { 'rootField.toBeModifiedField': 1}}, false, true);

what am i missing?

Thanks!

@S0c5

S0c5 commented Apr 24, 2015

Copy link
Copy Markdown

brother try it:

db.myCollection.update( {}, { $set: { rootFieldto:{BeModifiedField: 1}}}, false, true);

@samelliott89

samelliott89 commented Sep 28, 2016

Copy link
Copy Markdown

Does anyone know if it's possible to update multiple fields in the one query? I.e

return this.update({"Name": {$regex: regex}}, 
    { $set: { 'keyToUpdate': param1 , 'otherKeyToUpdate': param2 } }, {multi: true})
    .execAsync();

@iozozturk

Copy link
Copy Markdown

Thank you, works!

@fadeaway1992

Copy link
Copy Markdown

Thank you!

@mfdebian

mfdebian commented Oct 5, 2018

Copy link
Copy Markdown

Thanks!

@fakefarm

Copy link
Copy Markdown

Life's problems just decreased by one because of you. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment