SyntaxFix
Write A Post
Hire A Developer
Questions
You need to convert the date to YYYY-MM-DD in order to insert it as a MySQL date using the default configuration.
One way to do that is STR_TO_DATE():
STR_TO_DATE()
insert into your_table (...) values (...,str_to_date('07-25-2012','%m-%d-%Y'),...);