欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何快速將cvs數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫(kù)mysql

如何快速將cvs數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫(kù)mysql?

數(shù)據(jù)太大,用數(shù)據(jù)庫(kù)客戶端軟件直接導(dǎo)入非常卡,還是直接執(zhí)行SQL吧。

1、指定文件路徑。

2、字段之間以逗號(hào)分隔,數(shù)據(jù)行之間以\r\n分隔(我這里文件是以\n分隔的)。

3、字符串以半角雙引號(hào)包圍,字符串本身的雙引號(hào)用兩個(gè)雙引號(hào)表示。 Sql代碼 復(fù)制代碼 代碼如下:load data infile 'D:\\top-1m.csv' into table `site` fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\n'; 順帶也備份個(gè)導(dǎo)出吧。 Sql代碼 復(fù)制代碼 代碼如下:select * from `site` into outfile 'D:\\top-1m.csv' fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\n';