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

Mongo updates one table based on data from another table

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.

Share To

Database

Wechat

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

12
Report