The field DATE in the database has the following format:
2012-11-12 00:00:00
I would like to remove the time from the date and return the d
Use this SQL:
SELECT DATE_FORMAT(date_column_here,'%d/%m/%Y') FROM table_name;