In mysql database I've contact_details table. In this table a column name created_date2 contain following date values :
Formate : m / d y
-----------------
10/10/2014
10/10/2014
6/19/2013
6/19/2013
6/19/2013
6/19/2013
6/19/2013
6/19/2013
6/19/2013
6/19/2013
10/10/2014
10/10/2014
10/10/2014
3/10/2014
I want to update this column value which Month (m) has not Zero (0) to 06, 07 08 etc. For example, As you can see there are a few date 6/19/2013. I wan tto update this to 06/19/2013 using sql query
. Can someone tell how can I do this ?
Note : I can do this by manually but there are more than 2500 rows exist !!