txt文件導(dǎo)入mysql
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-09 15:16:19
txt文件導(dǎo)入mysql
txt文件導(dǎo)入mysql:MySQL寫入數(shù)據(jù)通常用insert語句,如 [c-sharp] view plaincopy insertintopersonvalues(張三,20),(李四,21),(王五,70)…; 但有時(shí)為了更快速地插入大批量數(shù)據(jù)或交換數(shù)據(jù),需要從文本中導(dǎo)入數(shù)據(jù)或?qū)С鰯?shù)據(jù)到文本。 一、 建立測試表,準(zhǔn)備數(shù)據(jù) 首先
導(dǎo)讀txt文件導(dǎo)入mysql:MySQL寫入數(shù)據(jù)通常用insert語句,如 [c-sharp] view plaincopy insertintopersonvalues(張三,20),(李四,21),(王五,70)…; 但有時(shí)為了更快速地插入大批量數(shù)據(jù)或交換數(shù)據(jù),需要從文本中導(dǎo)入數(shù)據(jù)或?qū)С鰯?shù)據(jù)到文本。 一、 建立測試表,準(zhǔn)備數(shù)據(jù) 首先
MySQL寫入數(shù)據(jù)通常用insert語句,如 [c-sharp] view plaincopy insertintopersonvalues(張三,20),(李四,21),(王五,70)…; 但有時(shí)為了更快速地插入大批量數(shù)據(jù)或交換數(shù)據(jù),需要從文本中導(dǎo)入數(shù)據(jù)或?qū)С鰯?shù)據(jù)到文本。 一、 建立測試表,準(zhǔn)備數(shù)據(jù) 首先建
MySQL寫入數(shù)據(jù)通常用insert語句,如
[c-sharp] view
plaincopy
-
insert into person values(張三,20),(李四,21),(王五,70)…;
但有時(shí)為了更快速地插入大批量數(shù)據(jù)或交換數(shù)據(jù),需要從文本中導(dǎo)入數(shù)據(jù)或?qū)С鰯?shù)據(jù)到文本。
一、 建立測試表,準(zhǔn)備數(shù)據(jù)
首先建立一個(gè)用于測試的表示學(xué)生信息的表,字段有id、姓名、年齡、城市、薪水。Id和姓名不
能為空。
[c-sharp] view
plaincopy
-
create table person(
-
id int not null auto_increment,
-
name varchar(40) not null,
-
city varchar(20),
-
salary int,
-
primary key(id)
-
)engine=innodb charset=gb2312;
創(chuàng)建表截圖如下:
接著寫一個(gè)用于導(dǎo)入的文本文件:c:/data.txt。
張三 31 北京 3000
李四 25 杭州 4000
王五 45 /N 4500
小明 29 天津 /N
每一項(xiàng)之間用Tab鍵進(jìn)行分隔,如果該字段為NULL,則用/N表示。
二、 導(dǎo)入數(shù)據(jù)
輸入命令,進(jìn)行導(dǎo)入。
[c-sharp] view
plaincopy
-
load data local infile “c:/data.txt”
-
into table person(name,age,city,salary);
導(dǎo)入數(shù)據(jù)截圖如下:
其中l(wèi)ocal表示本地。執(zhí)行后,可以看到NULL數(shù)據(jù)也被正確地導(dǎo)入。
三、 導(dǎo)出數(shù)據(jù)
現(xiàn)在將這個(gè)表導(dǎo)出為文本文件:c:/data_out.txt。
[c-sharp] view
plaincopy
-
select name,age,city,salary
-
into outfile “c:/data_out.txt”
-
lines terminated by “/r/n”
-
from person;
導(dǎo)出數(shù)據(jù)截圖如下:
其中l(wèi)ines terminated by “/r/n”表示每一行(即每一條記錄)用/r/n分隔,/r/n是window系
統(tǒng)的換行符。導(dǎo)出的data_out.txt與data.txt的內(nèi)容完全一樣。
四、 運(yùn)行環(huán)境
Windows vista home basic
MySQL 5.1.34-community
五、 注意
字段之間的分隔和記錄(行)之間的分隔默認(rèn)是/t(即Tab)和/n。但可以改變,如:
FIELDS TERMINATED BY ',' --字段用,進(jìn)行分隔
LINES TERMINATED BY ';' --記錄用; 進(jìn)行分隔
另外要注意其它操作系統(tǒng)的換行符與windows可能不相同。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
txt文件導(dǎo)入mysql
txt文件導(dǎo)入mysql:MySQL寫入數(shù)據(jù)通常用insert語句,如 [c-sharp] view plaincopy insertintopersonvalues(張三,20),(李四,21),(王五,70)…; 但有時(shí)為了更快速地插入大批量數(shù)據(jù)或交換數(shù)據(jù),需要從文本中導(dǎo)入數(shù)據(jù)或?qū)С鰯?shù)據(jù)到文本。 一、 建立測試表,準(zhǔn)備數(shù)據(jù) 首先