how to delete a document in mongodb
to delete a document
db.games.deleteOne({name:"Snake"})
how to delete a document in mongodb
to delete a document
db.games.deleteOne({name:"Snake"})
MongoDb delete
1 db.coll.remove({name: "Max"})
2 db.coll.remove({name: "Max"}, {justOne: true})
3 db.coll.remove({}) // WARNING! Deletes all the docs but not the collection itself and its index definitions
4 db.coll.remove({name: "Max"}, {"writeConcern": {"w": "majority", "wtimeout": 5000}})
5 db.coll.findOneAndDelete({"name": "Max"})
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us