To store dates or times in MySQL, use , or . I would recommend the first two for most purposes. datedatetimetimestamp
To tell MySQL how to parse the date format, use the STR_TO_DATE function . Here is an example:
CREATE TABLE table1 (`Date` Date);
INSERT INTO table1 (`Date`) VALUES (STR_TO_DATE('01/05/2010', '%m/%d/%Y'));
SELECT * FROM table1;
Date
2010-01-05
, DATE_FORMAT. , , , - .