Modification of a MongoDB nested document-updating data with an array modifier

Source: Internet
Author: User
Tags modifier

Novice MongoDB May and I have the same question, MongoDB is a document-type, then if a document nested another document, if the nested document is added to the search and deletion.
It's like this: How do you add and revise the name inside the auther? Let's take a look at this blog post.

Here are a few modifiers:$push,$pop,$pull

    • First add a name:
db.myFirstCollection.update({_id:1},{$push:{"auther":{"name":1}}})
    • Delete the last value, or 1 if you want to delete the first value
db.myFirstCollection.update({_id:1},{$pop:{"auther":1}})
    • Delete specified value
db.myFirstCollection.update({_id:1},{$pull:{"auther":{"name":1}}})
    • If you want to add an age field to the first value in Auther
db.myFirstCollection.update({"_id" :1},{$set:{"auther.0.age":22}})

Modification of a MongoDB nested document-updating data with an array modifier

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.