Drop collection in MongoDB - LearnHowToCode SarkariResult.com Interview Questions and Answers LearnHowToCodeOnline
Drop collection in MongoDB

Drop collection in MongoDB

Drop collection in MongoDB

 the previous tutorial we learned how to create collection in MongoDB. In this guide, we will see how to drop a collection in MongoDB.
To drop a collection , first connect to the database in which you want to delete collection and then type the following command to delete the collection:
db.collection_name.drop()
Note: Once you drop a collection all the documents and the indexes associated with them will also be dropped. To preserve the indexes we use remove() function that only removes the documents in the collection but doesn’t remove the collection itself and the indexes created on it. We will learn about indexes and remove() function in the later tutorials.

MongoDB drop collection Example

For example I want to delete a collection names “teachers” in my database “mycareerrepublic.com”. To do this I would write the following commands in the given sequence.
> use mycareerrepublicdb
switched to db mycareerrepublicdb

> show collections
mycareerrepublic
students
teachers

> db.teachers.drop()
true

> show collections
beginnersbook
students
As you can see that the command db.teachers.drop() returned true which means that the collection is deleted successfully. The same thing we have verified using the show collections command after deletion as shown above.

About Mariano

I'm Ethan Mariano a software engineer by profession and reader/writter by passion.I have good understanding and knowledge of AngularJS, Database, javascript, web development, digital marketing and exploring other technologies related to Software development.

0 comments:

Featured post

Political Full Forms List

Acronym Full Form MLA Member of Legislative Assembly RSS Really Simple Syndication, Rashtriya Swayamsevak Sangh UNESCO United Nations E...

Powered by Blogger.