As those are microseconds I assume that this is simply the scientific notation for the number of microseconds.
So you have .865588 * 10^8 microseconds which computes to 86558800.
Check out the comments about microseconds in
the manual
Quote:
|
Originally Posted by manual
The seconds field, including fractional parts, multiplied by 1 000 000. Note that this includes full seconds.
SELECT EXTRACT(MICROSECONDS FROM TIME '17:12:28.5');
Result: 28500000
|