Home Database MongoDB How to update the _id of a MongoDB document?

How to update the _id of a MongoDB document?

Aug 31, 2023 pm 10:29 PM

如何更新 MongoDB 文档的 _id?

You can't update it, but you can save the new ID and delete the old one. Follow some steps to update MongoDB's _id. The steps are as follows:

Step 1: In the first step, the ObjectId needs to be stored in a variable.

anyVariableName=db.yourCollectionName.findOne({_id:yourObjectIdValue)});
Copy after login

Step 2: In the second step, you need to set a new id.

yourDeclaredVariableName._id=yourNewObjectIdValue;
Copy after login

Step 3: In the third step, you need to insert the new ID in the document.

db.yourCollectionName.insert(yourDeclaredVariableName);
Copy after login

Step 4: In the fourth step, you need to delete the old ID.

db.yourCollectionName.remove({_id:yourOldObjectIdValue)});
Copy after login

To understand the above steps, let us create a collection with documents. The query to create a collection using documents is as follows:

> db.updateIdDemo.insertOne({"StudentName":"Robert"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c6ebfec6fd07954a4890683")
}
> db.updateIdDemo.insertOne({"StudentName":"Chris"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c6ebff66fd07954a4890684")
}
> db.updateIdDemo.insertOne({"StudentName":"Maxwell"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c6ebfff6fd07954a4890685")
}
Copy after login

Display all documents in the collection with the help of find() method. The query is as follows:

> db.updateIdDemo.find().pretty();
Copy after login
Copy after login

The following is the output:

{ "_id" : ObjectId("5c6ebfec6fd07954a4890683"), "StudentName" : "Robert" }
{ "_id" : ObjectId("5c6ebff66fd07954a4890684"), "StudentName" : "Chris" }
{ "_id" : ObjectId("5c6ebfff6fd07954a4890685"), "StudentName" : "Maxwell" }
Copy after login

The following is the query to update the _id of a MongoDB document:

Step1:
> myId=db.updateIdDemo.findOne({_id:ObjectId("5c6ebfec6fd07954a4890683")});
{ "_id" : ObjectId("5c6ebfec6fd07954a4890683"), "StudentName" : "Robert" }

Step 2:
> myId._id=ObjectId("5c6ebfec6fd07954a4890689");
ObjectId("5c6ebfec6fd07954a4890689")

Step 3:
> db.updateIdDemo.insert(myId);
WriteResult({ "nInserted" : 1 })

Step 4:
> db.updateIdDemo.remove({_id:ObjectId("5c6ebfec6fd07954a4890683")});
WriteResult({ "nRemoved" : 1 })
Copy after login

Let us check if the _id has been updated. Display all documents in the collection with the help of find() method:

> db.updateIdDemo.find().pretty();
Copy after login
Copy after login

The following is the output:

{ "_id" : ObjectId("5c6ebff66fd07954a4890684"), "StudentName" : "Chris" }
{ "_id" : ObjectId("5c6ebfff6fd07954a4890685"), "StudentName" : "Maxwell" }
{ "_id" : ObjectId("5c6ebfec6fd07954a4890689"), "StudentName" : "Robert" }
Copy after login

View the sample output, "StudentName":_id of "Robert" corrected.

The above is the detailed content of How to update the _id of a MongoDB document?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the different types of indexes in MongoDB (single, compound, multi-key, text, geospatial)? What are the different types of indexes in MongoDB (single, compound, multi-key, text, geospatial)? Mar 17, 2025 pm 06:17 PM

The article discusses various MongoDB index types (single, compound, multi-key, text, geospatial) and their impact on query performance. It also covers considerations for choosing the right index based on data structure and query needs.

How do I create users and roles in MongoDB? How do I create users and roles in MongoDB? Mar 17, 2025 pm 06:27 PM

The article discusses creating users and roles in MongoDB, managing permissions, ensuring security, and automating these processes. It emphasizes best practices like least privilege and role-based access control.

How do I use MongoDB Compass for GUI-based management and querying? How do I use MongoDB Compass for GUI-based management and querying? Mar 17, 2025 pm 06:30 PM

MongoDB Compass is a GUI tool for managing and querying MongoDB databases. It offers features for data exploration, complex query execution, and data visualization.

How do I choose a shard key in MongoDB? How do I choose a shard key in MongoDB? Mar 17, 2025 pm 06:24 PM

The article discusses selecting a shard key in MongoDB, emphasizing its impact on performance and scalability. Key considerations include high cardinality, query patterns, and avoiding monotonic growth.

How do I configure auditing in MongoDB for security compliance? How do I configure auditing in MongoDB for security compliance? Mar 17, 2025 pm 06:29 PM

The article discusses configuring MongoDB auditing for security compliance, detailing steps to enable auditing, set up audit filters, and ensure logs meet regulatory standards. Main issue: proper configuration and analysis of audit logs for security

What are the different components of a sharded MongoDB cluster (mongos, config servers, shards)? What are the different components of a sharded MongoDB cluster (mongos, config servers, shards)? Mar 17, 2025 pm 06:23 PM

The article discusses components of a sharded MongoDB cluster: mongos, config servers, and shards. It focuses on how these components enable efficient data management and scalability.

How do I implement authentication and authorization in MongoDB? How do I implement authentication and authorization in MongoDB? Mar 17, 2025 pm 06:25 PM

The article guides on implementing and securing MongoDB with authentication and authorization, discussing best practices, role-based access control, and troubleshooting common issues.

How do I use map-reduce in MongoDB for batch data processing? How do I use map-reduce in MongoDB for batch data processing? Mar 17, 2025 pm 06:20 PM

The article explains how to use map-reduce in MongoDB for batch data processing, its performance benefits for large datasets, optimization strategies, and clarifies its suitability for batch rather than real-time operations.

See all articles