工作:
.\mongoexport.exe --db mydb --collection slideproof_user_event_date_count --csv --out
events.csv --fields '_id,first_day'
.\mongoexport.exe --db mydb --collection slideproof_user_event_date_count --out
events.json --fields '_id._p,first_day'
不能正常工作(只有第一个字段/列有内容):
.\mongoexport.exe --db mydb --collection slideproof_user_event_date_count --csv --out
events.csv --fields '_id._p, first_day'
如何为子文档字段启用.csv的正确输出?
答案 0 :(得分:19)
解决方案是避免--fields参数中的空格:
这有效:
--fields '_id._p,value.count'
这不是:
--fields '_id._p, value.count'