[build by hexo/next/gitalk/hexo-generator-search/LaTeX]"> MongoDB-常用命令-导出数据 发表于 2017-01-20 分类于 MongoDB Mongodb 中的 mongoexport 工具可以把一个 collection 导出成 JSON 格式或 CSV 格式的文件。 12345678E:\_soft\MongoDB\Server\3.2\bin\mongoexport-v--host 123.57.25.147:27017-d "moments"-c "post"--out F:\post.json --type json--query "{ \"createTime\" : { \"$gt\" : ISODate(\"2017-01-19T00:00:00.000+08:00\"), \"$lt\" : ISODate(\"2017-01-20T00:00:00.000+08:00\") } }" 参数说明: -h:指明数据库宿主机的 IP -u:指明数据库的用户名 -p:指明数据库的密码 -d:指明数据库的名字 -c:指明 collection 的名字 -f:指明要导出那些列 -o:指明到要导出的文件名 -q:指明导出数据的过滤条件