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/如果要导入的文件不在这个里面就报以上错误;

原文地址:https://www.cnblogs.com/aaron-agu/p/10170680.html