使用 mongoexport 从 MongoDB 导出 JSON 格式的数据到本地

命令

mongoexport --host 127.0.0.1 --port 27017 \
	--username root --password 123456 \
	--db demo_db --collection demo_collection \
	--type json --out $PWD/result.json \
	-q '{"create_time":{"$gte":{"$date":"2020-03-04T16:00:00Z"},"$lt":{"$date":"2020-03-05T16:00:00Z"}}}'

说明:

  • --host--port--username--password 指定数据源 host、端口、用户名、密码
  • --db 指定库名
  • --collection 指定 collection 名
  • --type 指定导出格式为 JSON
  • --out 指定导出路径
  • -q 指定筛选条件

你可能感兴趣的:(数据库,mongodb,json,数据库,导出)