我有一个包含人数据的.csv文件。这样的人就行。
"20781","IN","Ms.","Roy","","Serrano","2002-04-16 00:00:00","20781@adventure-works.com"
如何为mongoimport提供字段名称?
字段名称 - >标识,类型,姓名,中间名,姓,modifieddate,电子邮件。
答案 0 :(得分:6)
你可以像Bellow那样做
mongoimport -d test -c person -type csv --file person.csv --fields "id,type,firstname,middlename,lastname,modifieddate,e-mail"
这将导入您的文件,就像在一个文档中一样。