-1
How to convert sysdate
for milisegundos
directly on Oracle?
I need to give the same result as the code below in java, but directly in query:
String s=df.format(Calendar.getInstance());
java.util.Date parsedUtilDate = df.parse(s);
java.sql.Timestamp timestamp = new java.sql.Timestamp(parsedUtilDate.getTime());
long timeInMilliSeconds = timestamp.getTime();
What’s wrong with the question?
– Murillo Goulart