一,概述
Mongodb中的mongoexport工具可以把一个库中的collection导出成JSON格式或CSV格式的文件。可以导出指定的数据项,当然导出的时候可以排序和指定条件。
二,语法
先来看一个简单示例吧
mongoexport -h 192.168.86.110 --port 27007 -d test -c test -f _id,name -o test.json
说明:
- -h:数据库宿主机的IP
- --port:端口号
- -d:要导出的表所在的数据库名
- -c:要导出的表名
- -f:要导出的字段
- -o:导出数据数据存在的文件名
指定条件的导出
1 mongoexport -h 192.168.86.110 --port 27007 -d test -c test -f _id,age -o test.json -q '{"$or":[{"name":"张三"}, {"name":"李四"}]}'
说明:
- -q:查询条件
- 查询name为张三或李四的id和age
1 mongoexport -h 192.168.86.110 --port 27007 -d test -c test -f _id,name -o test.json --sort '{"age":-1}' --limit 2
说明:
- --sort: 按指定字段排序
- --limit:导出数据的数量
- 按照age降序,取前两条数据的id和name