db.getCollection("tbmaoyan").update({"bizCode":"220117105642RTSB"},{"$set":{"bizId":"11111"}})转成Aggregation语句
时间: 2023-09-05 11:08:50 浏览: 132
.Net Core使用MongoDB的详细教程
对应的 Aggregation 语句如下:
```javascript
db.getCollection("tbmaoyan").updateMany(
{"bizCode":"220117105642RTSB"},
[{"$set":{"bizId":"11111"}}]
)
```
这个 Aggregation 语句使用了 `updateMany` 方法来更新满足条件的多个文档。在更新部分,使用 `$set` 操作符来设置要更新的字段和值。
阅读全文