I have a database column defined as int that contains a negative number representing a date in mmddyy format (without the leading zero)
so -10209 = 01/02/2009
-122508 = 12/25/2008
How can I convert the data to a datetime so I can compare it to another date in a where clause like :
..... where (converted data) > '2010-01-01'
thanks