如何把csv文件批量導入到mysql數據庫?
數據太大,用數據庫客戶端軟件直接導入非???,還是直接執行SQL吧。
1、指定文件路徑。
2、字段之間以逗號分隔,數據行之間以\r\n分隔(我這里文件是以\n分隔的)。
3、字符串以半角雙引號包圍,字符串本身的雙引號用兩個雙引號表示。 Sql代碼 復制代碼 代碼如下:load data infile 'D:\\top-1m.csv' into table `site` fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\n'; 順帶也備份個導出吧。 Sql代碼 復制代碼 代碼如下:select * from `site` into outfile 'D:\\top-1m.csv' fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\n';