MongoDB数据导入导出成csv或者json
时间:2021-07-01 10:21:17
帮助过:3人阅读
host 远程服务器IP --port 远程服务器端口 --username 远程数据库用户名 --password 远程数据库密码 --db 数据库名 --collection 数据表名 -q "{_id: ObjectId(‘‘)}" --out /home/user/Public/table.json
2. 将本地json文件导入到本地数据库
mongoimport --db 本地数据库名 --collection 本地数据表 --file ~/table.json --type json
MongoDB数据导入导出成csv或者json
标签: