EDUCBA

EDUCBA

MENUMENU
  • Blog
  • Free Courses
  • All Courses
  • All in One Bundle
  • Login
Home Data Science Data Science Tutorials MongoDB Tutorial MongoDB Delete

MongoDB Delete

Sulaksh More
Article bySulaksh More
Priya Pedamkar
Reviewed byPriya Pedamkar

Updated February 28, 2023

MongoDB Delete

Introduction to MongoDB Delete

MongoDB Delete method is an essential method, used to delete or remove a collection or a document existing in a MongoDB Collection. Upon creating a document or updating an existing document, we might encounter a situation where we might have to delete some records, which is where the Delete method can be implemented. MongoDB’s Delete methods are shell commands, which allow a user to delete or remove the records or documents upon insertion and if not needed. Multiple programming languages support these methods to delete records with APIs.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Syntax:

There are two basic ways to implement Delete Method, which are deleteOne method and deleteMany method. Every method has its functions and applicability, based on which it can be used.

1. Syntax for deleteOne method

db.collection.deleteOne( < filter > )

Explanation:

  • Simply removes a single document from a collection, which matches the mentioned filter. Here, collection specifies the name of the collection from which we intend to delete the record.
  • Then, deleteOne specifies that only one record must be deleted and the filter, is the criteria based on which, the records to be deleted must be selected.

2. Syntax for deleteMany method

db.collection.deleteMany( < filter > )

Explanation:

  • Removes a total number of documents that match with the filter mentioned. Like deleteOne, the collection holds the same place, but the deleteMany specifies that the number of records to be deleted can be more than one.
  • Filter helps in selecting the documents, which matches the criteria mentioned and then it selects the number of records that matches, which can be more than one. It deletes the total number of records selected.

Refer the below screenshot of help docs on MongoDB Shell:

Output:

MongoDB Delete 1

As you can see in the above help, both methods take optional parameters. Followed by the working of the method, respectively.

The syntax for Delete without filter or parameters:

We have seen delete document, with single or multiple documents and how to add filters to make sure specific documents are deleted. If we want to delete every single document inside a collection, we will pass simply empty filter, which is, {}.

db.locs.deleteMany( {} )

How does Delete Command work in MongoDB?

  • Specifically, the deleteOne method will delete the very first document, which matches with the mentioned filter. Using the field with a unique index like “_id” could work in a better way for precious deletion.
  • With the Delete Command working, there is an execution, which occurs only in case of capped collections, which are collections with fixed size and will overwrite its oldest records when it reaches a maximum set limit. To remove such capped collections and proceed with normal working, it is recommended to implement the db.collection.drop() method.
  • Working on the remove method is similar to delete(), but it differs only with the return values. When deleted with the delete method, the return will be the acknowledgement of the deletion and number of records deleted, while with remove method, write result is returned with several records removed.

Examples of MongoDB Delete

Given below are the examples mentioned:

Example #1 – deleteOne

Code:

db.code.deleteOne({"name":"malti"})

Output:

MongoDB Delete 2

Explanation:

  • Here we attempt to delete a single record, which matches with mentioned key-value pair. To start with, code is our collection in which the document might or might not exist. Then we have our method which is deleteOne, and then we have the filter mentioned inside. Here, our filter should look for a document that has the key as “name” and the value must match to “malti”.
  • Upon finding a document which matches the filter, the method will delete the document. As you can see, we implemented the deleteOne method and then when we listed the whole collection, we now don’t have any record or a document with the name as malti.

Example #2 – deleteMany

Code:

db.code.find()
db.code.deleteMany({"city":"Pune"})

Output:

deletemany

Explanation:

  • Started with db, with collection name, we have our deleteMany method, which will delete multiple documents in the code collection. It will rely on the filter mentioned to delete these documents. Our filter is “{“city”: “Pune”}”, meaning it will delete every document that has the city key, matching with the value of Pune.
  • Executing this query, every document present in the collection “code” will be deleted at once with the Pune as a city. As you can see, we implemented the deleteMany method with filter and then returned the whole collection, which is now empty. Initially, we had two documents with the city like Pune, but there are no documents with the city as Pune after executing our query. This is how deleteMany deletes every record that matches the filter.

Example #3 – Complete Deletion

A delete method which deletes every single record available in the collection, at once. By simply not specifying any filter, we attempt to delete every single record stored in the collection.

Code:

db.locs.deleteMany( {} )
db.code.find().count()

Output:

complete deletion

Explanation:

  • As you can see in the above screenshot, we firstly checked the total count of records in the collection, which was 195. Then we executed the deleteMany query with a blank filter, which deleted every single record available.
  • Which resulted in emptying the whole collection. Later upon checking for the count, we get 0; as a result, meaning no record. That’s how deleteMany with no filter works.

Conclusion

To wrap it up, delete is an important function for MongoDB and can be used in two ways. It simply removes the document that matches the filter. It can be used to delete one document at once or many documents altogether. We understood the working of each method followed by the examples and screenshot. Delete methods are used to remove records from the collection, deleteOne deletes the first record that matches the filter and deleteMany removes every record that matches the filter.

Recommended Articles

This is a guide to MongoDB Delete. Here we discuss the introduction, how to delete command works in MongoDB and examples. You may also have a look at the following articles to learn more –

  1. Lookup in MongoDB
  2. MongoDB create Index
  3. MongoDB Delete | How to Work?
  4. MongoDB Array
  5. How to work MongoDB Distinct?
  6. MongoDB Versions | How to Check?
  7. Guide to MongoDB Aggregate
C++ PROGRAMMING Course Bundle - 9 Courses in 1 | 5 Mock Tests
37+ Hour of HD Videos
9 Courses
5 Mock Tests & Quizzes
Verifiable Certificate of Completion
Lifetime Access
4.5
ASP.NET Course Bundle - 28 Courses in 1 | 5 Mock Tests
123+ Hours of HD Videos
28 Courses
5 Mock Tests & Quizzes
Verifiable Certificate of Completion
Lifetime Access
4.5
SQL Course Bundle - 51 Courses in 1 | 6 Mock Tests
204+ Hours of HD Videos
51 Courses
6 Mock Tests & Quizzes
Verifiable Certificate of Completion
Lifetime Access
4.5
SOFTWARE TESTING Course Bundle - 13 Courses in 1
53+ Hour of HD Videos
13 Courses
Verifiable Certificate of Completion
Lifetime Access
4.5
Primary Sidebar
Popular Course in this category
MONGODB Course Bundle - 6 Courses in 1
 20+ Hours of HD Videos
6 Courses
Verifiable Certificate of Completion
  Lifetime Access
4.5
Price

View Course
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

ISO 10004:2018 & ISO 9001:2015 Certified

© 2023 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more