mysql中的load data infile用法

本文介绍MySQL中LOAD DATA INFILE命令的使用方法,包括基本语法、常见关键字的应用及解决中文字符问题等技巧,帮助读者高效批量导入数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

mysql中的load data infile可以快速的将文档中的数据插入数据表中,非常方便,快捷,导入300万条数据只需两三分钟。

语法如下:

LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name.txt' [REPLACE | IGNORE] INTO TABLE tbl_name

   [FIELDS
    [TERMINATED BY 'string']
    [[OPTIONALLY] ENCLOSED BY 'char']
    [ESCAPED BY 'char' ]]
   [LINES
    [STARTING BY 'string']
    [TERMINATED BY 'string']]
   [IGNORE number LINES]
   [(col_name_or_user_var,...)]
   [SET col_name = expr,...]]

一、准备数据和表

1、在数据库test中新建表 student:

create table student(id int primary key auto_increment,name varchar(20) );

2、准备数据文件 student.txt,并保存在D盘目录下student.txt内容如下:

1,quejinlong
2,dongyuncheng
3,lixuan
4,zhouwen
5,chenming

二、测试

1、最简单的情况

mysql> use test;

mysql>load data infile 'd:\\student.txt' into table student fields terminated by ',' lines terminated by '\r\n';

以上代码即可实现,将student.txt 文件中的内容快速插入到student表中。

 fields terminated by ',' lines terminated by '\r\n' 如果没有这两句,那么默认是 fields terminated by tab lines terminated by '\n'

2、ignore和replace关键字

 因为student 表中id 是关键字,唯一的,sdudent.txt 中如果有id与表中数据一致,就会冲突,所以还需要加关键字ignore 或者replace 告诉程序碰到这种情况如何操作

mysql>load data infile 'd:\\student.txt' ignore into table student fields terminated by ',' lines terminated by '\r\n';

mysql>load data infile 'd:\\student.txt' replace into table student fields terminated by ',' lines terminated by '\r\n';

3、中文字符

如果文本中有中文字符,需要将该文本的字符集编码改为utf-8(与数据库编码一致),否则会出现乱码

查看student 表字符集(其实就是查看建表命令)可以用以下命令:

<span style="font-size: 18px;">mysql></span>show create table student;

4、忽略表头前几行

假如student.txt 内容如下:

<pre name="code" class="html" style="font-size: 18px;">第一行
第二行
0,quejinlong,2015-07-25,2015-07-25 16:37:471,dongyuncheng,2015-07-25,2015-07-25 16:37:472,lixuan,2015-07-25,2015-07-25 16:37:473,zhouwen,2015-07-25,2015-07-25 16:37:474,chenming3,2015-07-25,2015-07-25 16:37:47

mysql>load data infile 'd:\\student.txt' replace into table student fields terminated by ',' lines terminated by '\r\n' ignore 2 lines;

5、Enclosed By 和 Escaped By关键字


6、load file into 的反操作:将数据表导出为文件:

 select * from student Into OutFile 'd:/studentout.txt';


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值