代码改变世界

随笔分类 -  MySql

mysql命令行导入大文件txt

2012-10-30 16:59 by atin, 475 阅读, 收藏,
摘要: load data local infile 文件路径 into table 表名 lines terminated by 分隔符例:load data local infile ‘/root/aa.txt’ into table t lines terminated by ‘\t’; 阅读全文