Answers for "delete all of something in mongo shell"

4

mongodb delete all documents

db.collection.delete_many( { } );
Posted by: Guest on April-20-2020
2

delete collection mongodb

db.collection.drop()
Posted by: Guest on July-26-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

find All and delete in mongodb

db.products.remove( { qty: { $gt: 20 } } )
Posted by: Guest on January-29-2021

Code answers related to "delete all of something in mongo shell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language