I have a table in csv file and I want to import it into a MySQL table. I copy paste a series of data from a website into an excel file and then convert it to csv file.
The columns in my table are like:
Date,name,version,link
the format of the date is like dd/mm/yy
primarily I tried to load the file into mySQL table but I got this error code 1292:
Incorrect date value while the date value is set as DATE
I have also tried to put the CSV table to MySQL with python but still have the same error:
_mysql_exceptions.OperationalError: (1292, "Incorrect date value: 'Date' for column 'Date' at row 1")
Do anyone has any idea what should I do?