Skip to content

Instantly share code, notes, and snippets.

@deepaksisodiya
Created May 3, 2015 11:06
Show Gist options
  • Save deepaksisodiya/574573bdc0dd22681906 to your computer and use it in GitHub Desktop.
Save deepaksisodiya/574573bdc0dd22681906 to your computer and use it in GitHub Desktop.
mongoDB 22
db.COLLECTION_NAME.update(SELECTIOIN_CRITERIA, UPDATED_DATA);
db.items.update({ title : 'first title'}, { $set : { 'title' : 'new title' } });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment