I am trying to Populate data into Employee table where B_Date is set to DATE in Mysql. But getting this error -
Row import failed with error: ("Incorrect date value: '05/06/1985' for column 'B_DATE' at row 1", 1292)
So How do I change the format into DD-MM-YYYY for a particular table or column?
I have tried this -
SELECT DATE_FORMAT(B_DATE, '%d-%m-%y') from employees;
still giving same error while loading Data.