how to convert integer to date?
717585Sep 10 2009 — edited Sep 10 2009helllo,everyone.
I want to convert a integer data to a date.
In java programm. just this is ok.
long someLong = 1251130204000L;
Date anotherDate = new Date(someLong);
Is there any functions that i can use in sql.
thanks..