标签:ima 很多 sql 表名 file mina 文件查看 命令 sed
先打开CSV文件查看第一行有哪些字段,然后新建数据库,新建表。(若字段内容很多建议类型text,如果设成char后续会报错)
命令如下:
load data infile ‘路径XXXX.csv‘
into table 表名
fields terminated by ‘,‘ optionally enclosed by ‘"‘ escaped by ‘"‘
lines terminated by ‘\r\n‘;
示意图:
搞定!
标签:ima 很多 sql 表名 file mina 文件查看 命令 sed
原文地址:https://www.cnblogs.com/poziiey/p/10677637.html