Using MySQL
Table
ID Date 001 2010-05-01 002 2010-06-08
Query
Select ID, Date from table;
I want
Like this:
SELECT ID, DATE_FORMAT(`Date`, '%d-%M-%Y') FROM table;
You can find other date formatting options for MySQL here: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_date-format