1、mysql 的命令行操作
参考链接:https://www.cnblogs.com/dannyyao/p/6533567.html
登录mysql:
mysql -u root -p
连接数据库:
use db_name;
查看数据表:
show tables;
2、用命令行向mysql中导入大的csv文件
(由于用phpmyadmin,有128M的大小限制,而且特别慢,,,)
参考链接:https://blog.csdn.net/quiet_girl/article/details/71436108
load data infile 'F:/MySqlData/test1.csv' --CSV文件存放路径
into table student--要将数据导入的表名
fields terminated by ',' optionally enclosed by '"' escaped by '"'
lines terminated by '\r\n';
att:文件目录要用“/”,不能用“\”。
3、但是导入是遇到了问题“ERROR 1290 (HY000): The MySQL server is running with the –secure-file-priv option so it cannot execute this statement”
解决:http://www.jb51.net/article/125905.htm
那些教程中说的都是“secure-file-priv”,我这里应该搜的是“secure_file_priv”
然而宝宝的这个地方改了后还是没变,,,,
最后解决:应该是在[mysqld]下面加上secure_file_priv =