In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-13 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.