Try this.
SELECT DISTINCT M.col1, M.col2, DATE_FORMAT(M.date_col, '%m/%d/%y') as date_col FROM t1 M ORDER BY 1, 3;