MySQL批量匯出 匯入文字資料

2021-07-05 22:10:16 字數 860 閱讀 8724

首先要在

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』。

ps:也可以通過命令mysqldump實現資料庫的備份。

mysql批量匯出 匯入文字資料

mysql 常用的insert語句 insert into test code no coupon price get mobile get order code code get time code use order id is coupon get goods info id values t...

mysql文字匯入匯出資料

mysql文字匯入匯出資料 立測試表,準備資料 首先建立乙個用於測試的表示學生資訊的表,欄位有id 姓名 年齡 城市 薪水。id和姓名不能為空。www.2cto.com create table person id int not null auto increment,name varchar 4...

mysql匯入txt文字資料

按照mysql官方文件指示下 建立資料庫和表 mysql create database menagrie 然後建立表 1 mysql create table pet name varchar 20 owner varchar 20 2 species varchar 20 char 1 birt...