I have an Oracle database which contains a start time and end time (oracle datatype TIMESTAMP). These times contain milliseconds (i.e. HH:MI:SS.SS).
How do I calculate the difference between these two times INCLUDING MILLISECONDS?
I know that DateDiff ("S", startTime, endTime) will return the difference, but it only goes to seconds and I need MILLISECONDS.
Thanks!
How do I calculate the difference between these two times INCLUDING MILLISECONDS?
I know that DateDiff ("S", startTime, endTime) will return the difference, but it only goes to seconds and I need MILLISECONDS.
Thanks!