Update & Remove
// Update Statement
db.friendsCollection.update({"firstname":"Ross"}, {$set: {age: 33}})
// Verify the update
db.friendsCollection.find({"firstname":{'$regex' : '^r', '$options' : 'i'}})// Remove the attribute / element
db.friendsCollection.update({"firstname": "Phoebe"}, {$unset: {age:""}});
// Remove entire document
db.friendsCollection.remove({firstname: "Ross"}, true);
db.friendsCollection.find();
// Remove all documents from friendsCollection
db.friendsCollection.remove({});Last updated