Skip to content

Instantly share code, notes, and snippets.

@shamalroy
Created August 15, 2015 01:43
Show Gist options
  • Save shamalroy/d09f13938f660cc99727 to your computer and use it in GitHub Desktop.
Save shamalroy/d09f13938f660cc99727 to your computer and use it in GitHub Desktop.
MongoDB insert update save
db.myCollection.insert({name:"My Name", password : "abc"})
db.myCollection.save({_id: "123", name:"My Name", password : "abc"})
db.myCollection.update(
{"name" : "My Name" },
{$set: { "password": "123" }}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment