mysql 导入出csv

Posted aaron_agu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 导入出csv相关的知识,希望对你有一定的参考价值。

load data infile ‘/var/lib/mysql-files/ip_address.csv‘ into table ip_address fields terminated by ‘,‘ optionally enclosed by ‘"‘ escaped by ‘"‘ lines terminated by ‘ ‘;

 

报错:ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

mysql中执行 show variables like ‘%secure%‘;  -- 查看secure-file-priv 这个参数只允许导入导出文件的位置,默认为/var/lib/mysql-files/如果要导入的文件不在这个里面就报以上错误;

 

以上是关于mysql 导入出csv的主要内容,如果未能解决你的问题,请参考以下文章

怎么把csv文件导入mysql

把csv文件导入到SQL Server表中

如何将csv导入mysql和mysql导出csv

如何把csv文件批量导入到mysql数据库

mysql命令行导入和导出数据

mysql 表导入向导无法导入 csv 文件