当前位置:Gxlcms > 数据库问题 > Mongodb 克隆集合

Mongodb 克隆集合

时间:2021-07-01 10:21:17 帮助过:18人阅读

mongodb没有提供进行本地复制集合的方法,于是可以写一个循环插入的方法完成mongodb 本地克隆一份集合数据:
db.source_collection.find().forEach(function(x){db.target_collection.insert(x)})

python中mongodb数据更新

tables.update({‘name‘:‘名字‘},{‘$set‘:{‘age‘:66}})


Mongodb 克隆集合

标签:function   god   set   插入   table   复制集   克隆   get   target   

人气教程排行