In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
In business scenarios, there is often a requirement to update a field of table B according to the information in table A. In a relational database, this requirement is very simple, and a SQL is done:
Update B set B.f1=A.a1 where xxxx
But in the mongo database, a SQL cannot be solved. Fortunately, mongo supports js scripts, which can be implemented through js writing similar to stored procedures. For example, in a business scenario, there is a user table, a vehicle table, and the status of the vehicle table is summarized into the user table.
Var cursor = db.getCollection ('vehicle') .aggregate ([{$match: {' checkStatus':2}}, {$group: {_ id: "$userId", vehicleNum: {$sum:1}]) while (cursor.hasNext ()) {r = cursor.next (); print (r ["_ id"] + "\ t" + r ["vehicleNum"]) Db.getCollection ("user") .update ({_ id: r ["_ id"]}, {$set: {vehicleNum: r ["vehicleNum"], updateDatetime: ISODate ("2019-05-23T09:07:56.566+08:00")}})}
This principle is very simple, that is, according to mongo return cursor traversal, as long as you know how to access the cursor node can be easily written out.
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.