我需要将 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)