MONGODB Basic Operation Data Update multiple data

Source: Internet
Author: User

By default, update updates the first found data, and we do an experiment by inserting 3 C-1 data.
Db.test_collection.insert ({c:1})
And then we'll find a bit.
Db.test_collection.find ({c:1})
The result is
{"_id": ObjectId ("5b5e3f7da2b4848fd8c49dbf"), "C": 1"_id": ObjectId ("5b5e3f7fa2b4848fd8c49dc0"), "C": 1  "_id": ObjectId ("5B5E3F7FA2B4848FD8C49DC1"), "C": 1}
The instructions have been inserted successfully.

We updated the data for C to 1 to C 2 with update
Db.test_collection.update ({c:1},{c:2})
Let's look at the data for C 1 again.
Db.test_collection.find ({c:1})
We found two more.

We look for the data for C 2
Db.test_collection.find ({c:2})
Found only one

MongoDB is designed to prevent careless update errors
Db.test_collection.update ({c:1},{$set: {c:2}},false,true)
The 2nd set is a partial operation, and the 3rd parameter indicates if it is not present, if it is newly created, and the 4th parameter indicates whether to update more than one data, we can find the data of C 2.
Db.test_collection.find ({c:2})
We found 3.

MONGODB Basic Operation Data Update multiple data

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.