Create a DATE_TIME column
Assuming your half-assed date column is in the format
'06-17-2004 19:17:52'
This code will create a real date_time from that data
UPDATE mytable
SET myReasonableDateColumn=
CONCAT( SUBSTRING( myHalfassedDateTime,
7,
4 ),
SUBSTRING( myHalfassedDateTime,
1,
2 ),
SUBSTRING( myHalfassedDateTime,
4,
2 ),
SUBSTRING( myHalfassedDateTime,
12,
2 ),
SUBSTRING( myHalfassedDateTime,
15,
2 ),
SUBSTRING( myHalfassedDateTime,
18,
2 ) )
You'll thank me someday.