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
I am currently learning about Redis and container...
I think this is a problem that many people have en...
There was a shaking barrage on TikTok a while ago...
Table of contents Introduction The following is a...
Table of contents Placeholder replacement Console...
background As the company's sub-projects incr...
To achieve the plus sign effect shown below: To a...
This article example shares the specific code of ...
Preface First, let's see how to identify a TC...
Let's first look at the basic syntax of the c...
Use CSS to modify scroll bars 1. Overflow setting...
This article shares with you the installation and...
Table of contents Preface Asynchronous loading Pa...
This is a cheating scheme for voting websites wit...
question Recently I encountered a requirement to ...