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
Mainly use the preserve-3d and perspective proper...
Editor's note: This article is contributed by...
Recently, when doing homework, I needed to nest a ...
Abstract: Whether at work or in an interview, opt...
The Docker publishing method provides many conven...
This article mainly introduces the process of imp...
This article shares the installation tutorial of ...
Preface Speaking of text search tools, everyone m...
This article analyzes the process of shutting dow...
[Usage and function of mysql cursor] example: The...
Table of contents Preface –link Custom Network As...
Engineering Structure The project is divided into...
This article shares the specific code of JavaScri...
Table of contents nonsense text The first router/...
This example uses jQuery to implement a mouse dra...