Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

[MongoDB Learning Notes 9] in-depth MongoDB update (update) operation: modifier $inc

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

After the ongoDB document is stored in the database, the update method is used to update the document. The update method has two parameters, such as

Update (args1,args2)

Args1 refers to the conditions for querying documents.

Args2 refers to what kind of changes are made to the documents queried.

$inc is used to increase the used key value, and if the key does not exist, create it

The key values that can only be modified by $Inc must be integers, long integers, and double-precision floating-point values, not other types.

Use $inc to increase the key value:

> db.post.findOne ({"id": 0}) {"_ id": ObjectId ("54a530c3ff0df3732bac167f"), "id": 0, "name": "joe", "age": 65, "comments": {"1": 4, "2": 2 "3": 3}} > db.post.update ({"id": 0}, {$inc: {"age": 6}}) WriteResult ({"nMatched": 1, "nUpserted": 0, "nModified": 1})

The modified result:

> db.post.findOne ({"id": 0}) {"_ id": ObjectId ("54a530c3ff0df3732bac167f"), "id": 0, "name": "joe", "age": 71, "comments": {"1": 4, "2": 2 "3": 3}}

Use $inc to reduce the key value:

> db.post.update ({"id": 0}, {$inc: {"age":-16}}) WriteResult ({"nMatched": 1, "nUpserted": 0, "nModified": 1})

The modified result:

> db.post.findOne ({"id": 0}) {"_ id": ObjectId ("54a530c3ff0df3732bac167f"), "id": 0, "name": "joe", "age": 55, "comments": {"1": 4, "2": 2 "3": 3}} >

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report