如何將一張500M的csv格式的表格快速導(dǎo)入到mysql中?
由于工作需要,經(jīng)常需要將mysql數(shù)據(jù)庫中的數(shù)據(jù)導(dǎo)出到excel表格,或者需要將excel表格數(shù)據(jù)導(dǎo)入到mysql數(shù)據(jù)庫,我的方法是先將它們都轉(zhuǎn)換成一種中間數(shù)據(jù)格式csv(execl數(shù)據(jù)可以直接導(dǎo)出為csv格式,csv格式也可以直接用excel打開)。下面介紹一下操作步驟:csv導(dǎo)入mysqlloaddatainfile'C:\\Users\\UserName\\Desktop\\test.csv'intotable`table`fieldsterminatedby','optionallyenclosedby'"'escapedby'"'linesterminatedby'\n';mysql導(dǎo)入csvselect*from`table`loaddatainfile'C:\\Users\\UserName\\Desktop\\test.csv'fieldsterminatedby','optionallyenclosedby'"'escapedby'"'linesterminatedby'\n';如果亂碼,可用相關(guān)編輯器打開.csv文件,另存為utf-8的csv