Hi Experts!
Whatever is happening is really stumping me out
Database version - Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
select sessiontimezone, dbtimezone, systimestamp, sysdate from dual
| sessiontimezone | dbtimezone | systimestamp | sysdate |
| America/Phoenix | -04:00 | 17-MAR-15 04.09.27.894994000 PM -04:00 | 17-MAR-15 |
the column of sample_table
updated_ts timestamp(6)
When I execute following query
select sysdate - updated_ts,
systimestamp - updated\_ts SUB\_SYSTIMESTAMP,
updated\_ts,
sysdate,
systimestamp
from sample_table

I am trying very hard to derive any explanation out of this.
Thank you in advance!