mysql中的Load data的使用方法
程序员文章站
2024-02-13 10:47:52
测试把txt文件导入至mysql数据库中: table: txt文件:d:/data.txt ()
txt中使用 '\n' 描述null值。
导入数据:
复制代码...
测试把txt文件导入至mysql数据库中:
table:
txt文件:d:/data.txt ()
load data local infile 'd:/data.txt' into table pet
lines terminated by '\r\n' ignore 1 lines;
table:
txt文件:d:/data.txt ()
txt中使用 '\n' 描述null值。
导入数据:
复制代码 代码如下:
load data local infile 'd:/data.txt' into table pet
lines terminated by '\r\n' ignore 1 lines;
应用mysql版本:
下一篇: 基于Python的接口测试框架实例