MongoDB随笔

Posted zhzhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB随笔相关的知识,希望对你有一定的参考价值。

创建用户
db.createUser({user: "abc",pwd: "abc123",roles: [ { role: "readWrite", db: "test" } ]});
db.system.users.remove({user:"abc"})
 
MongoDB导出数据
mongoexport -d service -c speech -o file --type csv -f id,time
mongoexport -d service -c speech -o file --type json -f id,time
 
mongoexport -d service -c speech -o file.json --type json -f id,time -q ‘{"time": {$gt:1483200000000}}‘ #大于等于2017年
mongoexport -d service -c speech -o file.csv --type csv -f id,time -q ‘{"time": {$gt:1483200000000}}‘ #大于等于2017年
 
待续。。。

以上是关于MongoDB随笔的主要内容,如果未能解决你的问题,请参考以下文章

mongodb基础随笔

MongoDB随笔

Windows下Mongodb以服务形式启动的方法

linux环境下安装mongodb

mongodb 降序

MongoDB基本命令操作