mysql 匯入csv檔案
mysql預設檔案存放位址是』/var/lib/mysql-files 可修改
window 生成的csv檔案 需要lines terminated by 『\r\n』 加\r
linux 生成的csv檔案只需要 \n 就可以
如果有中文標題 最好刪除後在用 ignore 0
如果不是中文標題 可以 不用刪除標題 ignore 1 忽略第一行 從第二行開始讀取資料
load data infile 『/var/lib/mysql-files/csv.csv』
replace into table user
fields terminated by 『,』
optionally enclosed by 『"』
lines terminated by 『\r\n』
ignore 0 lines(birthday,***,date,name);
Mysql 匯入csv檔案
mysql load data infile命令可以把csv平面檔案中的資料匯入到資料庫中。linux下 load data infile home test dump ip location.csv into table ip location character set utf8 fields ...
CSV檔案匯入MySQL
1 首先看一下我本次匯入的資料,比較簡單 1 在資料庫中首先建立了乙個名為 test 的資料庫,在test資料庫下建立了乙個名為 student 的 屬性如下 column name datatype note idint 11 primary key,not null name varchar 4...
mysql 匯入csv檔案
linux 用 shell 指令碼 批量 匯入 csv 檔案 到 mysql 資料庫 前提 每個csv檔案第一行為欄位名 建立的資料庫欄位名同csv 檔案的欄位名 1.批量匯入 多個 csv 檔案 for file in csv do mv file tablename.csv mysqlimpor...