MongoDB Note 2 (Basic operations, additions and deletions)

Source: Internet
Author: User
Tags modifier

    1. Tough Document Replacement Update operation

Db. [Documentname].update ({finder},{modifier})


2. The primary key conflict will error and stop the update operation, when the hard-to-replace document and the existing document ID conflict, the system will error

Example:

> Db.userInfo.find () {"_id": 2, "name": "Xiaoyou"} {"_id": 3, "name": "yy"}> db.userInfo.update ({_id:2},{_id:3  , Name: "QQ"}) Writeresult ({"nmatched": 0, "nupserted": 0, "nmodified": 0, "Writeerror": {"code": 16837, "errmsg": "The _id field cannot is changed from {_id:2.0} to {_id:3.0}. "}})


3.inserOrUpdate operation (the third parameter defaults to false)

Db. [Documenname].update ({finder},{modifier},true)


4. Batch update operation, by default when the query query more than one data, the default is to modify the first data if the implementation of bulk modification

Db. [Documnetname].update ({finder},{modifier},false,true)


5. Use the modifier to complete the local update operation




MongoDB Note 2 (Basic operations, additions and deletions)

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.