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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

MongoDB Performance Tuning: Optimizing Read & Write Operations MongoDB Performance Tuning: Optimizing Read & Write Operations Apr 03, 2025 am 12:14 AM

The core strategies of MongoDB performance tuning include: 1) creating and using indexes, 2) optimizing queries, and 3) adjusting hardware configuration. Through these methods, the read and write performance of the database can be significantly improved, response time, and throughput can be improved, thereby optimizing the user experience.

How to sort mongodb index How to sort mongodb index Apr 12, 2025 am 08:45 AM

Sorting index is a type of MongoDB index that allows sorting documents in a collection by specific fields. Creating a sort index allows you to quickly sort query results without additional sorting operations. Advantages include quick sorting, override queries, and on-demand sorting. The syntax is db.collection.createIndex({ field: <sort order> }), where <sort order> is 1 (ascending order) or -1 (descending order). You can also create multi-field sorting indexes that sort multiple fields.

How to set up users in mongodb How to set up users in mongodb Apr 12, 2025 am 08:51 AM

To set up a MongoDB user, follow these steps: 1. Connect to the server and create an administrator user. 2. Create a database to grant users access. 3. Use the createUser command to create a user and specify their role and database access rights. 4. Use the getUsers command to check the created user. 5. Optionally set other permissions or grant users permissions to a specific collection.

What are the tools to connect to mongodb What are the tools to connect to mongodb Apr 12, 2025 am 06:51 AM

The main tools for connecting to MongoDB are: 1. MongoDB Shell, suitable for quickly viewing data and performing simple operations; 2. Programming language drivers (such as PyMongo, MongoDB Java Driver, MongoDB Node.js Driver), suitable for application development, but you need to master the usage methods; 3. GUI tools (such as Robo 3T, Compass) provide a graphical interface for beginners and quick data viewing. When selecting tools, you need to consider application scenarios and technology stacks, and pay attention to connection string configuration, permission management and performance optimization, such as using connection pools and indexes.

How to handle transactions in mongodb How to handle transactions in mongodb Apr 12, 2025 am 08:54 AM

Transaction processing in MongoDB provides solutions such as multi-document transactions, snapshot isolation, and external transaction managers to achieve transaction behavior, ensure multiple operations are executed as one atomic unit, ensuring atomicity and isolation. Suitable for applications that need to ensure data integrity, prevent concurrent operational data corruption, or implement atomic updates in distributed systems. However, its transaction processing capabilities are limited and are only suitable for a single database instance. Multi-document transactions only support read and write operations. Snapshot isolation does not provide atomic guarantees. Integrating external transaction managers may also require additional development work.

MongoDB vs. Oracle: Data Modeling and Flexibility MongoDB vs. Oracle: Data Modeling and Flexibility Apr 11, 2025 am 12:11 AM

MongoDB is more suitable for processing unstructured data and rapid iteration, while Oracle is more suitable for scenarios that require strict data consistency and complex queries. 1.MongoDB's document model is flexible and suitable for handling complex data structures. 2. Oracle's relationship model is strict to ensure data consistency and complex query performance.

The difference between MongoDB and relational database and application scenarios The difference between MongoDB and relational database and application scenarios Apr 12, 2025 am 06:33 AM

Choosing MongoDB or relational database depends on application requirements. 1. Relational databases (such as MySQL) are suitable for applications that require high data integrity and consistency and fixed data structures, such as banking systems; 2. NoSQL databases such as MongoDB are suitable for processing massive, unstructured or semi-structured data and have low requirements for data consistency, such as social media platforms. The final choice needs to weigh the pros and cons and decide based on the actual situation. There is no perfect database, only the most suitable database.

The Power of MongoDB: Data Management in the Modern Era The Power of MongoDB: Data Management in the Modern Era Apr 13, 2025 am 12:04 AM

MongoDB is a NoSQL database because of its flexibility and scalability are very important in modern data management. It uses document storage, is suitable for processing large-scale, variable data, and provides powerful query and indexing capabilities.

See all articles