MongoDB 字段重命名
MongoDB About 302 words$rename
可用于修改字段名称。
{$rename: { <field1>: <newName1>, <field2>: <newName2>, ... } }
重命名
将_id
为1
的记录中的account_id
字段修改为user_id
。
db.getCollection('user').update({_id:1},{$rename:{"account_id":"user_id"}})
批量修改
db.getCollection('user').updateMany({},{$rename:{"account_id":"user_id"}})
Views: 3,088 · Posted: 2020-04-09
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓
Loading...