1

我需要将 csv 文件上传到我的 MySQL 表。出于某种原因,当我在 Mac Terminal 中运行以下命令时,只插入了一行。如何上传所有行?

load data local infile 'Research/cube_sample_data.csv' 
into table ad_spend 
fields terminated by ',' 
lines terminated by '\n';

我试过'\r\n'',\r\n'没有成功。我不断收到此消息:

Query OK, 1 row affected, 0 warnings (0.00 sec)
Records: 1  Deleted: 0  Skipped: 0  Warnings: 0

我的文件是这样的:

entertainment, games, 14

entertainment, movies, 12

我有一个空表,有 3 列:

category (varchar), subcat (varchar), adspend (int)
4

1 回答 1

0

似乎字段之间不仅有逗号,而且还有空格。所以尝试使用:

fields terminated by ', '
于 2012-11-06T23:34:34.973 回答