Open In App

MongoDB – Drop Collection

The MongoDB db.collection.drop() method removes a collection from the database. It also removes all indexes associated with the dropped collection.

Important Points

Syntax

db.Collection_name.drop({writeConcern: <document>})



Parameters:

It does not take any parameters.

Optional Parameters:

This parameter is a document expressing the write concern of the db.collection.drop() operation. It is used when we want to omit to use of the default write concern.



Returns:

This method returns true when successfully drops a collection, otherwise returns false.

MongoDB Drop Collection Examples

Let’s look at some of the examples of db.collection.drop() method in MongoDB. These examples demonstrate how to delete a collection in MongoDB.

In the following example, we are working with:

Database: gfg

Collection: student

Document: Three documents contains name and the age of the students

Example 1

We will drop the student collection in the gfg database.

db.student.drop()

It drops the student collection and all the indexes associated with the collection:

Output

Example 2

In the following example, we are working with:

Database: gfg

Collections: student_gfg, teacher, semester

Here, we want to drop teacher collection from the gfg database. So, we use drop method:

db.teacher.drop()

This method drops teacher collection along with its documents.

Output

Conclusion

This guide covers the use of db.collection.drop() method to remove collection from the database in MongoDB. We also covered some important points on the collection drop method to get a proper idea of its functioning.

At last, we saw two examples of the drop collection method in MongoDB. These examples are also explained with easy-to-understand explanations.

Article Tags :