一.数据导入 mysqlimport -uroot oa d:/aa.txt --fields-terminated-by=, --fields-optionally-enclosed-by= --lines-terminated-by=\r\n 或者 load data infile 'd:/students.txt' into table stu fields terminated by '\,' lines terminated by '\n' 其中:aa为要导入的数据表名,fields…