This is to commemorate the 4 pitfalls I stepped on today... Pitfall 1: Local’s fault Error: mysql> load data infile … Pitfall 2: Wrong csv address Error: mysql> load data infile … Then put the csv file to be imported into the folder: mysql>load data infile 'C:/ProgramData/MySQL/MySQL Server 8.0/Uploads/user_info_utf.csv' … Note: \ must be changed to / Pitfall 3: Wrong file format Error: Correction: To modify the file format, first open it with Excel, save as, save type - utf8, tools - web options - encoding utf8, replace the original file: Open it with Notepad, save as, save type - all files, encoding - utf8, replace the original file: Pitfall 4: Null value error Error: mysql> set @@sql_mode=ANSI; Notes: Finally climbed out of the pit: 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'; Imported successfully! So touching! This concludes this article on 4 solutions to MySQL import errors in CSV. For more information on MySQL import errors in CSV, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Building a selenium distributed environment based on docker
>>: Common structural tags in XHTML
Copy code The code is as follows: <html xmlns=...
This article example shares the specific code of ...
The effect is very simple, just copy the following...
Why did I use this? It all started with the makin...
Web Server 1. The web server turns off unnecessar...
This article shares the specific code of js to ac...
Linux uses files as the basis to manage the devic...
1. Arrange CSS in alphabetical order Not in alphab...
Table of contents 1. Insert statement 1.1 Insert ...
pssh is an open source software implemented in Py...
Let’s install Nginx and try it out. Please note t...
1. Percentage basis for element width/height/padd...
This article example shares the specific code of ...
What is Fuser Command? The fuser command is a ver...
I installed MySQL smoothly in Ubuntu 16.04 before...