日期:2014-05-16 浏览次数:20394 次
?
mongoDB提供了 将数据导出为 json 或者CSV格式的文件的功能
?
具体见? http://www.mongodb.org/display/DOCS/Import+Export+Tools
?
其中需要注意的是:
If you want to output CSV, you have to specify the fields in the order you want them.
?
一个例子如下:
?
mongoexport -d dba22 -c foo -f x,y,a,b,c --csv -o ./result.csv
?-d? 标示 数据库
?-c?? 标示? 数据表
?-f?? 需要提取的field用逗号分隔
?-o? 输出路径