Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在集合中的每个 mongo 文档中将字段除以 100。
例如,如果我有文件
{ "item":"Shoe", "cost":100 } { "item":"tie", "cost":1000 }
如何更新除以 100 的每个项目成本
到目前为止我有
db.Usage.update({ }, {$set : {'cost': 'cost'/100}}, false, true)
您必须使用 $set 运算符查找()每个单独的文档并使用新值更新()每个文档。
您不能使用一个update() 操作来执行这样的更新。