Based on your comments, you're probably looking for this
SELECT first_name, middle_name, last_name, DATE_FORMAT(STR_TO_DATE(added_date, '%d-%m-%Y %h:%i:%s %p'),'%d/%m/%Y') AS AddDate FROM profiles
Output Example:
| FIRST_NAME | MIDDLE_NAME | LAST_NAME | ADDDATE |
-------------------------------------------------- ---
| Jhon | (null) | Doe | 08/11/2013 |
Here is the SQLFiddle demo
source share