以此悼念我今天踩過的4個(gè)坑……
坑一:local的錯(cuò)
報(bào)錯(cuò):
ERROR 3948 (42000): Loading local data is disabled; this must be enabled on both the client and server sides
修正:去掉local
mysql> load data infile ……
坑二:csv地址錯(cuò)
報(bào)錯(cuò):
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
修正:csv放進(jìn)正確的地址
先查出安全文件的地址:
mysql> load data infile ……
再把要導(dǎo)入的csv文件放進(jìn)該文件夾:
mysql>load data infile 'C:/ProgramData/MySQL/MySQL Server 8.0/Uploads/user_info_utf.csv' ……
注意:\ 必須改為 /
坑三:文件格式錯(cuò)
報(bào)錯(cuò):
ERROR 1366 (HY000): Incorrect integer value: ‘\FEFF1' for column ‘userId' at row 1
修正:修改文件格式
先用excel打開,另存為,保存類型-utf8,工具-web選項(xiàng)-編碼utf8,替換原來文件:
再用“記事本”打開,另存為,保存類型-所有文件,編碼-utf8,替換原來文件:
坑四:空值的錯(cuò)
報(bào)錯(cuò):
ERROR 1292 (22007): Incorrect date value: ‘' for column ‘birth' at row 18
修正:
修改sql_mode:
mysql> set @@sql_mode=ANSI;
備注說明:
ANSI模式:寬松模式,更改語法和行為,使其更符合標(biāo)準(zhǔn)SQL。對(duì)插入數(shù)據(jù)進(jìn)行校驗(yàn),如果不符合定義類型或長度,對(duì)數(shù)據(jù)類型調(diào)整或截?cái)啾4?,?bào)warning警告。對(duì)于csv導(dǎo)入空值報(bào)錯(cuò),可以先把sql_mode設(shè)置為ANSI模式,這樣便可以插入數(shù)據(jù),而對(duì)于無數(shù)據(jù)的字段值,數(shù)據(jù)庫將會(huì)用NULL值代替。
最后爬出坑:
mysql>load data infile 'C:/ProgramData/MySQL/MySQL Server 8.0/Uploads/user_info_utf.csv' into table data.userinfo fields terminated by ',' optionally enclosed by '"' escaped by '"'lines terminated by '\r\n';
成功導(dǎo)入!感天動(dòng)地!
到此這篇關(guān)于mysql導(dǎo)入csv的4種報(bào)錯(cuò)的解決方法的文章就介紹到這了,更多相關(guān)mysql導(dǎo)入csv報(bào)錯(cuò)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- IDEA鏈接MySQL報(bào)錯(cuò)08001和連接成功后不顯示表的問題及解決方法
- IDEA連接mysql報(bào)錯(cuò)的問題及解決方法
- MySQL5.6 GTID模式下同步復(fù)制報(bào)錯(cuò)不能跳過的解決方法
- Mysql5.7及以上版本 ONLY_FULL_GROUP_BY報(bào)錯(cuò)的解決方法
- MySQL關(guān)于ERROR 1290 (HY000)報(bào)錯(cuò)解決方法
- 詳解mysql8.0創(chuàng)建用戶授予權(quán)限報(bào)錯(cuò)解決方法
- Django重裝mysql后啟動(dòng)報(bào)錯(cuò):No module named ‘MySQLdb’的解決方法
- MySQL存儲(chǔ)表情時(shí)報(bào)錯(cuò):java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D\x0A...’的解決方法
- 安裝python時(shí)MySQLdb報(bào)錯(cuò)的問題描述及解決方法
- Linux連接mysql報(bào)錯(cuò):Access denied for user ‘root’@‘localhost’(using password: YES)的解決方法
- 教你解決往mysql數(shù)據(jù)庫中存入漢字報(bào)錯(cuò)的方法