The date column of my table is VARCHAR not datetime.
Eg
entry
'03/01/2011'
'03/22/2011'
'05/22/2010'
when I do a
SELECT min(entry) FROM table
I will get '03/01/2011' as it is the min in alphabetical order. I want to retrieve '05/22/2010' instead which is the min date. How do I convert the column to datetime and get the min.
Thanks