Answers for "delete all data in mongodb"

4

mongodb remove all from collection

db.collection.remove({})
Posted by: Guest on December-21-2020
4

mongodb delete all documents

# To remove all documents in a collection, call the remove method with an empty query
# document {}. The following operation deletes all documents from the bios collection:

db.bios.remove( { } )
Posted by: Guest on July-17-2020
0

delete all of something in mongo shell

Removes ALL: db.<collectionName>.remove({})
Example: db.users.remove({id: 73465872012183})
Posted by: Guest on January-19-2021
0

remove all db entries from mongo

db.users.remove({})
Posted by: Guest on June-28-2021

Code answers related to "delete all data in mongodb"

Browse Popular Code Answers by Language