If they're stores as yyyy-mm-dd then just alter the type from VARCHAR to DATE.
So long as you correctly store in yyyy-mm-dd then even as varchar they can be reformatted using DATE_FORMAT() eg
CREATE TABLE `test_date` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` varchar(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
mysql> SELECT date
-> , DATE_FORMAT(date, '%m/%d/%Y') as usdate
-> FROM test_date;
+------------+------------+
| date | usdate |
+------------+------------+
| 2014-11-15 | 11/15/2014 |
| 2014-11-16 | 11/16/2014 |
| 2014-11-17 | 11/17/2014 |
| 2014-11-18 | 11/18/2014 |
| 2014-11-19 | 11/19/2014 |
| 2014-11-20 | 11/20/2014 |
+------------+------------+