当前位置: 数据库>mysql
mysql中的Load data的使用方法
来源: 互联网 发布时间:2014-10-07
本文导语: 测试把txt文件导入至mysql数据库中: table: txt文件:D:/data.txt (txt文件下载) txt中使用 'N' 描述null值。 导入数据: 代码如下: load data local infile 'D:/data.txt' into table pet lines terminated by 'rn' ignore 1 lines; 应用mysql版本:
测试把txt文件导入至mysql数据库中:
table:
txt文件:D:/data.txt (txt文件下载)
load data local infile 'D:/data.txt' into table pet
lines terminated by 'rn' ignore 1 lines;
table:
txt文件:D:/data.txt (txt文件下载)
txt中使用 'N' 描述null值。
导入数据:
代码如下:
load data local infile 'D:/data.txt' into table pet
lines terminated by 'rn' ignore 1 lines;
应用mysql版本: