现在我得到两个集合:coll01
和coll02
.
而coll01的结构是这样的:
{
id: 01,
name: "xxx",
age: 30
}
coll02 的结构如下:
{
id: 01,
name: "XYZ"
gender: "male"
}
两个集合中的两个 id 字段都是索引。并且这两个集合中的文档数量相同。
我想在传统 SQL 中做的是:
update coll01, coll02
set coll01.name = coll02.name
where coll01.id = coll02.id