Mysql support this format YYYY-MM-DD by default. But what if i want to insert date in this format \"dd-Mon-yyyy\" in mysql?? Is there any way so that i can insert the manual dat
Yes using MySql STRING_TO_DATE() function
insert into your_table(date_column) values(STR_TO_DATE("09-Sep-2014","%d-%b-%Y"));
SQL FIDDLE DEMO