| Author |
SQL Current Time
|
Mark Hughes
Ranch Hand
Joined: Jul 14, 2006
Posts: 145
|
|
Hi all,
Is it possible to get a time stamp in SQL in the format of a long datatype similar to the java Method System.currentTimeMillis() .
I know sql has functions similar to SELECT NOW(); which return something like "2009-06-05 16:10:09" , but i would like to hava a method to return it as a long number. As i have saved alot of my time instances in the database as long numbers and now i have the need to do a select based on the current time and instance of a saved long number. I dont think a SELECT statement would work if i tried something like SELECT .... WHERE (SELECT NOW()) < column.TimeMillisAsLong.
Best
Mark Hughes
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
What wrong with:
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Mark Hughes
Ranch Hand
Joined: Jul 14, 2006
Posts: 145
|
|
Thanks Paul i did not think of that, very good. Ill give it a go.
Best
Mark Hughes
|
 |
 |
|
|
subject: SQL Current Time
|
|
|