MongoDB基础
Posted spacescp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB基础相关的知识,希望对你有一定的参考价值。
0.数据库启动/关闭
- 启动mongonDB:
mongod --dbpath C:mongomongodbdatadb
( --repair)# 异常关闭时重启
- 关闭mongodb:
use admin
db.shutdownServer()
------------------------------------------------------------------------------------------------------------------------------------------
1.数据库的导入和导出
本地:127.0.0.1:27017
线上:xxx.xxx.xx.xxx:xxxxx-u xxxx -p xxxxxxxx
- BSON
bson格式导出
mongodump -h 127.0.0.1:27017 -d xxxx -c xxxx -o ./
mongodump -h xxx.xxx.xx.xxx:xxxx -d xxxx -c xxxx -u xxxx -p xxxxxxxx -o ./
bson格式导入
mongorestore -h xxx.xxx.xx.xxx:xxxx -d xxxx --dir F:xxxx -u xxxx -p xxxxxxxx
mongorestore -h 127.0.0.1:27017 -d xxxx--dir F:xxxxxxxx
mongorestore -h 127.0.0.1:27017 -d xxxx--dir F:xxxxxxxx
- JSON
json格式导出
mongoexport -h xxx.xxx.xx.xxx:xxxx -d xxxx-c xxxx -u xxxx -p xxxxxxxx --out name.json
json格式导入
mongoimport -h xxx.xxx.xx.xxx:xxxx -d xxxx -c xxxx --file name.json -u xxxx -p xxxxxxxx
mongoimport -h xxx.xxx.xx.xxx:xxxx -d xxxx -c xxxx (--drop) --file name.json -u xxxx -p xxxxxxxx
------------------------------------------------------------------------------------------------------------------------------------------
2.更新和删除字段
修改[字段名]
# db.getCollection(‘pydb‘).update({}, {$rename : {"pop" : "abc"}}, false, true)
db.getCollection(‘SS_UniversityInfo‘).update({}, {$rename : {"XuanKaoScrope" : "SubjectScope"}}, false, true)
参数说明:
db.collection.update(criteria,objNew,upsert,multi)
criteria:查询条件
objNew:update对象和一些更新操作符
upsert:如果不存在update的记录,是否插入objNew这个新的文档,true为插入,默认为false,不插入。
multi:默认是false,只更新找到的第一条记录。如果为true,把按条件查询出来的记录全部更新
criteria:查询条件
objNew:update对象和一些更新操作符
upsert:如果不存在update的记录,是否插入objNew这个新的文档,true为插入,默认为false,不插入。
multi:默认是false,只更新找到的第一条记录。如果为true,把按条件查询出来的记录全部更新
-----------------------------------------------------------------
- 更新字段(table 代表表名 , 添加字段 content,字符串类型)
db.table.update({}, {$set: {content:"xxx"}}, false,true)
- 删除字段(其实就是用了update命令,把所有的字段值清空)
db.table.update({},{$unset:{content:""}},false, true)
------------------------------------------------------------------------------------------------------------------------------------------
mongodb研究
db.getCollection(‘SS_UniversityInfo‘).update({"SubjectScope":{"$elemMatch":{"XuanKaoSubjectScrope":{"$exists":true}}}},
{"$rename":{"$SubjectScope.$.XuanKaoSubjectScrope":"SubjectScope.$.Scrope"}},false,true)
{"$rename":{"$SubjectScope.$.XuanKaoSubjectScrope":"SubjectScope.$.Scrope"}},false,true)
------------------------------------------------------------------------------------------------------------------------------------------
以上是关于MongoDB基础的主要内容,如果未能解决你的问题,请参考以下文章