Home MySQL中使用SQL语句从文本文件导入数据
Post
Cancel

MySQL中使用SQL语句从文本文件导入数据

1
2
3
load data infile 'C:\\Users\\admin\\Desktop\\test.txt' into table t_admin 
fields terminated by ','
lines terminated by '\r\n';
This post is licensed under CC BY 4.0 by the author.