mysql中匯入txt檔案資料的操作命令

2021-08-14 17:05:52 字數 706 閱讀 2547

1.首先,必須建立乙個一一對應的表(字段對應的資料的型別一一對應)。

假如建立乙個使用者表user:

create table user(

id int unsigned not null primary key auto _incremarent,

username varchar(50) not null,

password varchar(50) not null

)2.然後,將檔案匯入到資料庫:

假設檔名為user.txt,內容為:

1,test001,test001

2,test002,test002

3,test003,test003

4,test004,test004

執行匯入命令(假設檔案在c盤根目錄):

mysql>load data infile 'c:/user.txt' into table user

>fields terminated by','

>lines terminated by'\r\n'

注意:1),檔案可以使用絕對路徑c:/user.txt,否則需放在資料庫根目錄中

2),因為字段資料之間是用逗號隔開的,所以必i須使用fields terminated by','不然將匯入失敗。

3),因為winsows中行以「\r\n」隔開,所以必須lines terminated by'\r\n',

mysql資料庫匯入txt檔案資料

把txt檔案匯入到mysql資料庫中,選用的是mysql中的load data 語法。load data local infile d test.txt into table test fields terminated by enclosed by lines terminated by n ig...

python中匯入及處理檔案資料

import os 匯入標準庫 os.getcwd 檢視當前工作目錄 print 當前的工作目錄為 s os.getcwd 現實當前工作目錄 os.chdir c users lz desktop headfirstpython chapter3 修改工作目錄 os.getcwd 檢視當前工作目錄 ...

Mysql檔案資料匯入

mysql匯入資料load data infile用法 基本語法 load data low priority local infile file name txt replace ignore into table tbl name fields terminated by t optionall...