0%

MongoDB导入excel数据

一、将xxx.xlsx另存为xxx.csv

打开要导入到MongoDB中的Excel文件,“文件”→“另存为”,选择存为csv格式,如下图

image-20220104110544005

然后使用记事本打开CSV文件,“另存为”,将编码格式改为UTF-8.不修改为UTF-8可能会因为格式问题出错。

image-20220104110617480

二、执行mongoimport命令

1
mongoimport -d test -c testImport --type csv --headerline --file mongo-import-test.csv

参数说明:
d: 数据库名
c: collection名
type: 文件类型,指明是csv文件
headline: 指明第一行是列名,不需要导入
file: csv文件路径及名字
更多参数请执行 mongoimport –help查看

image-20220104110145719