MongoDB-使用Shell

时间:2019-06-04 10:53:09

标签: mongodb mongo-shell

假设我们有以下文档:

{
    "friends" : [ 
        "1234", 
        "5678"
    ]
}

如何使用mongo shell将集合中的所有文档更新为以下格式:

{
    "friends" : [ 
        {"name": "1234", "views": 0}, 
        {"name": "5678", "views": 0}
    ]
}

0 个答案:

没有答案