mongo 使用 mongoexport 按照条件导出 csv 文件
Posted lshan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongo 使用 mongoexport 按照条件导出 csv 文件相关的知识,希望对你有一定的参考价值。
cankao : https://blog.csdn.net/enjolras_fuu/article/details/96479807
mongoexport --host 127.0.0.1 --port 27017 --db ELSA_MILESTONE_SUBSCRIPTION_SERVICE --collection ‘milestone_work_table‘ --type csv --fieldFile /opt/milestone_work_table.txt --out /opt/milestone_work_table.csv --limit 5
mongoexport -d test -c records -q ‘{ a: { $gte: 3 }, date: { $lt: { "$date": "2016-01-01T00:00:00.000Z" } } }‘ --fields "_id,a,b,c,date" --type=csv --out exportdir/myRecords.csv
mongoexport -d test -c records -q ‘{ a: { $gte: 3 }, date: { $lt: { "$date": "2016-01-01T00:00:00.000Z" } } }‘ --fieldFile fields.txt --type=csv --out exportdir/myRecords.csv
原文链接:https://blog.csdn.net/enjolras_fuu/article/details/96479807
以上是关于mongo 使用 mongoexport 按照条件导出 csv 文件的主要内容,如果未能解决你的问题,请参考以下文章
【mongo】mongoDB export/import数据导出和导入