Open In App

MongoDB – dropIndex() Method

The dropIndex() method drops or delete the specified index from the given collection. It takes only one parameter which is the index, that we want to drop and it is optional. To find the index name or the index specification document for the dropIndex() method, use getIndexes() method. 

Note: Starting from MongoDB 4.2, you are not allowed to remove all the non-_id indexes using db.Collection_Name.dropIndex(“*”). If you want to do that then use db.Collection_Name.dropIndexes() method.



Syntax:

db.Collection_Name.dropIndex(index : <document/string>)

Optional Parameters:



Return Type:

This method returns a document that contains nIndexesWas and Ok fields with their values.

Example: 

In the following examples, we are working with:

Database: gfg

Collection: student

Document: Three documents contains name and language that students use in coding

First of all we created an index on the name field using createIndex() method:

db.student.createIndex({name:2})

Now we want to see the index name, using getIndex() so we can drop that index:

db.student.getIndexes()

db.student.dropIndex("name_1")

Here, we are going to drop the name: name_1 index using dropIndex() method. In this method, we are using the parameter as a string:

db.student.dropIndex({name:2})

Here, we are going to drop the name: 2 index using dropIndex() method. In this method, we are using the parameter as a document:

Article Tags :