Crud Operations in Mongo DB

Learn via video courses
Topics Covered

Overview

CRUD is an acronym for Create, Read, Update, and Delete. CRUD operations in MongoDB are used to manipulate data in databases.

CRUD In MongoDB

CREATE, READ, UPDATE, and DELETE actions are referred to as CRUD operations in MongoDB. These are the basic operations used to alter data in databases. In MongoDB, the term "CRUD operations" refers to the standard set of database operations used to work with collections of data.

Create: To add new documents to a collection, use the Create operation.

Read: Data from a collection is retrieved using the Read operation.

Update: The Update operation is used to edit existing documents in a collection.

Delete: A collection of documents can be deleted using the Delete procedure.

These four basic procedures can be used to accomplish a wide range of database operations in MongoDB. These activities, for instance, can be used to add new records, get data, edit records, and remove records.

Performing CRUD Operations in MongoDB

Before we start exploring the CRUD methods. Let's first set up the db and collection which we are going to use.

Creating a New Database:

To create a new database, you can simply run any command against a non-existing database, and MongoDB will automatically create it for you.

Example:

Let us create a database name userdb.

Output:

Creating a New Collection:

To create a new collection, you can use the "createCollection" method.

Syntax:

Example:

Output:

Create Operation

There are two ways to create new documents to a collection in MongoDB:

1. insertOne():

Adding a single document to a collection is done using this method. A document to be added is the only argument it accepts, and it returns a result object with details about the insertion.

Syntax:

Example:

Output:

2. insertMany()

This method is used to insert multiple documents into a collection at once. It takes an array of documents as its argument and returns a result object that contains information about the insertion.

Syntax:

Example:

Output:

Both the insertOne() and insertMany() methods return a result object that contains information about the insertion operation. The result object includes the number of documents inserted, the unique _id field value of each inserted document, and any write errors that occurred during the operation.

Read Operations

In MongoDB, read operations are used to retrieve data from the database.

1. find()

The find() method is used to retrieve data from a collection. It returns a cursor that can be iterated to access all the documents that match the specified query criteria.

Syntax:

Query - It specifies the selection criteria for the documents to be retrieved. It is an object that contains one or more key-value pairs, where each key represents a field in the document and the value represents the value to match for that field.

Projection - It specifies which fields to include or exclude in the result set. It is an object that contains one or more key-value pairs, where each key represents a field in the document and the value represents whether to include (1) or exclude (0) the field in the result set.

Note: Both query and projection are optional.

Example:

Output:

The above example will retrieve all documents from the collection without applying any filters or projecting any specific fields.

Example:

Output:

This command will return all the documents in the "users" collection where the age is greater than 29, and only return the "name" and "age" fields.

2. findOne()

The findOne() method returns a single document object, or null if no document is found. You can pass a query object to this method to filter the results.

Syntax:

Example:

Output:

This returns the first document in the user's collection where the name field is "Jim".

Update Operations

In MongoDB, the "update" operation is used to modify existing documents in a collection.

Methods:

There are several ways to perform an update operation, including the following:

1. updateOne()

The updateOne() method is used to update a single document that matches a specified filter.

Syntax:

Options include the following parameters:

  • Upsert is an optional boolean that specifies whether to insert a new document if no document matches the filter. If upsert is set to true and no document matches the filter, a new document will be inserted. The default value of upsert is false.

  • WriteConcern is an optional document that specifies the level of acknowledgement requested from MongoDB for write operations. If not specified, the default write concern will be used.

Example:

Output

In the example, we have used the $set operation.

Following are a few of the many available operations:

  • $set: Sets the value of a field in a document. If the field does not exist, the set will create it.
  • $unset: Removes a field from a document.
  • $inc: Increments the value of a field in a document by a specified amount.
  • $push: Adds an element to the end of an array field in a document. If the field does not exist, push will create it as an array with the specified element.
  • $pull: Removes all occurrences of a specified value from an array field in a document.

This command will update the email of the document in the "users" collection where the name is "Angela" to angela@gmail.com.

2. updateMany

The updateMany() method is used to update multiple documents that match a specified filter.

Syntax:

Example:

Output:

This command will update the status of all documents in the "users" collection where the age is less than 30 to "active".

Delete Operations

In MongoDB, the "delete" operation is used to remove documents from a collection.

There are several ways to perform a delete operation, including the following:

1. deleteOne()

The deleteOne() method is used to remove a single document that matches a specified filter.

Syntax:

filter: Specifies deletion criteria using query operators. Specify an empty document { } to delete the first document returned in the collection.

Options:

  • WriteConcern (Optional): A document expressing the write concern. Omit to use the default write concern.
  • Collation (Optional): Specifies the collation to use for the operation. Collation allows users to specify language-specific rules for string comparison, such as rules for letter case and accent marks.
  • Hint (Optional): A document or string that specifies the index to use to support the query predicate.

Example:

Output:

This command will remove the first document in the "users" collection where the name is "Angela".

2. deleteMany()

The deleteMany() method is used to remove multiple documents that match a specified filter.

Syntax:

Example:

Output:

This command will remove all documents in the "users" collection where the age is less than 30.

3. drop()

The drop() method is used to remove an entire collection.

Syntax:

Example:

Output:

This command will remove the users collection.

Note: This operation is irreversible, and all data in the collection will be permanently deleted.

Conclusion

  • CRUD operations in MongoDB stand for Create, Read, Update, and Delete, which are the fundamental operations for managing data in a MongoDB database.
  • Creating new documents can be done using insertOne() or insertMany().
  • Reading documents can be done using find() or findOne().
  • Updating documents can be done using updateOne() or updateMany().
  • Deleting documents can be done using deleteOne() or deleteMany().

FAQs

Q. What are CRUD operations in MongoDB?

A. CRUD operations in MongoDB are the same as in any other database system: Create, Read, Update, and Delete. MongoDB provides a flexible and powerful API for performing these operations on documents in a MongoDB database.

Q. How do you retrieve a specific document in MongoDB?

A. To retrieve a specific document in MongoDB, you can use the findOne() method, which takes a query object as its argument. For example, to find a user with the email "sashamann@example.com":