mongodb 使用小记
2018-09-11 本文已影响0人
小疯伊始
1、导出JSON格式数据
mongoexport -d {database} -c {collection} -o {outfile}
2、导出csv文件(指定条件)
mongoexport -h xxxx -u root -p xxxx --authenticationDatabase admin --authenticationMechanism=SCRAM-SHA-1 --port 27017 -d {db} -c {collection} -q '{_created_at:{$gt:ISODate("2020-02-05T09:00:00.000Z"), $lt:ISODate("2020-02-06T04:00:00.000Z")}}' --type=csv -f {column} -o ./db.csv