#查看collection内 某个字段条目数 db.dictionary_system.find({"name":"xxx"}).count() #清空某个collection的字段,很危险,很危险,很危险,不要执行,不要执行,不要执行!!!!他会把有name的都干掉!!!!删除用下面的remove db.dictionary_system.update({},{$unset:{‘name‘:‘xxx.xxx‘}},false, true) #查看某个字段在collection的内容 db.dictionary_system.find({"name":"xxxx"}) #备份某个collection mongoexport -h xxxxxxx.mongodb.rds.aliyuncs.com:3717 -uxxxx -d xx-c dxxxxx -o xxxxx #导入整个collection。导入失败 mongoimport -hdds-2ze641e07cb38e441.mongodb.rds.aliyuncs.com:3717 -dhalo -cdictionary_system -unlpuser dictionary_system.mongo #通过某个json导入 mongoimport --host xxxxxmongodb.rds.aliyuncs.com:3717 -uxxxxx -pxxxxx -dhalo -cxxxxx --file xxxx.json #按照id删除某个collections db.xxxxx.remove({"_id":ObjectId("xxxxx")});
采坑不小心百度出来unset的方式删除某条字段,结果悲剧了,都你妈删了,望后来者不要使用update unset 去删除某个mongo的collection字段,他会把符合key的都干掉,而不管value
原文地址:https://www.cnblogs.com/dribs/p/12293004.html
时间: 2024-10-27 12:48:21