Answers for "delete rows with filter mongo shell"

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

mongodb delete matching documents

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

Browse Popular Code Answers by Language