猿问
向MongoDB集合中的每个文档添加新字段
如何为现有集合中的每个文档添加新字段?
我知道如何更新现有文档的字段,但不知道如何向集合中的每个文档添加新字段。如何在
mongo
外壳中执行此操作?
智慧大石
浏览 3522
回答 3
3回答
泛舟湖上清波郎朗
db.your_collection.update({},{$ set:{“ new_field”:[]}},{upsert:false,multi:true})
0
0
0
狐的传说
db.your_collection.update({},{$ set:{“ new_field”:null}},{upsert:false,multi:true})
0
0
0
随时随地看视频
慕课网APP
相关分类
MongoDB
我要回答