mysql load data 从文件导入数据

理论上任何,有规律的文本内容都可以导入mysql数据库
例如:
表:
create table test(
id int(10) auto_increment, 
name char(255) default null,
description text default null,
primary key(id)
)
id | name | description
 
文本内容 f:/a.txt:
aaa|||ccccccccc]]]bbbb|||eeeeeee
 
使用语句:
load data infile "f:/a.txt" into table test fields terminated by "|||" (name,description) lines terminated by "]]]"
 
即可导入