How to drop a collection from MongoDB

dak425

Donald Feury

Posted on August 15, 2021

How to drop a collection from MongoDB

How to drop a collection from MongoDB

For a full overview of MongoDB and all my posts on it, check out my overview.

WARNING! This is a dangerous command that will result in the loss of data

If you want to completely drop a collection, which will result in the loss of all documents in that collection, there is one simple command to do that called drop.

To drop a collection in your MongoDB instance called podcasts:

db.podcasts.drop()

Enter fullscreen mode Exit fullscreen mode

Only do this if you're sure you want to completely reset that collection.

💖 💪 🙅 🚩
dak425
Donald Feury

Posted on August 15, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related