MongoDB中的MYSQL查询下面是否有任何等效项?
update table_name1 as a
join table_name2 as b
on a.uniqueid=b.uniqueid
set a.column1=b.column1,a.column2=b.column2 ;
查找可能是一种可能的解决方案,但不知道如何使用它进行更新。
答案 0 :(得分:0)
您可以这样做,
db.table1.find({}).forEach(function (t1) { // foreach on table one
var t2 = db.table2.findOne({ uniqueid: t1.uniqueid},
{ column1: 1,column2:1 }); // finding unique id of table1 with table2
if (t2 != null) { // checking if not null
t1.column1 = t2.column1; // assigning tabl2's value to table1
db.table1.save(t1); // save it
}
});
请删除我的评论