• Just cast fromdate (in the table) as a datetime like:

    select fromdate from emp where cast(fromdate as datetime)>'2/16/2007'

    as long as you are sure they are all valid datetimes otherwise the conversion will fail.