Can any one please let me know, i need to change the data format 2010-05-14 17:53 to 14/05/2010 17:53 using mysql select query
2010-05-14 17:53
14/05/2010 17:53
Use DATE_FORMAT to format your DATE. To solve your conversion, use the following code as a pointer
DATE_FORMAT
SELECT DATE_FORMAT('2010-05-14 17:53', '%d/%m/%Y %H:%i');