Home >Database >Mysql Tutorial >mysql 导入、导出数据_MySQL

mysql 导入、导出数据_MySQL

WBOY
WBOYOriginal
2016-06-01 13:10:431054browse

一、批量导入已经格式好的文本数据:
首先要在mysql中创建对应的数据表,如可取表名为stu。格式好的文本数据放在一个txt文件中,每行包含一个记录,并且列的顺序必须和数据库表格的列次序相同,且各列之间用特定的分隔符分隔开。假如格式好的文本数据放在D盘下的stu.txt文件中,各列之间的分隔符为Tab,那么导入数据可以如此操作:
LOAD DATA LOCAL INFILE ‘D://stu.txt’ INTO TABLE stu;
如果列之间的分隔符为空格,可以使用语句:
LOAD DATA LOCAL INFILE‘D://stu.txt’INTO TABLE stu FIELDS TERMINATED BY ‘ ’;
其中FIELDS TERMINATED BY就是用来指定列之间分隔符的。


二、导出到文本文件中:
如想把数据表stu中的数据导出到文件stu_out.txt中,使用命令:
select * from stu into outfile ‘d://stu_out.txt’ lines terminated by ‘/r/n’;
其中lines terminated by ‘/r/n’表示指定各条记录之间用‘/r/n’分隔,当然也可以指定各列之间的分隔符,如:
select * from stu into outfile ‘d://stu_out.txt’fields terminated by ‘,’ lines terminated by ‘/r/n’;
指定各列之间的分隔符为‘,’而行之间的分隔符为‘/r/n’。


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn