From the course: Oracle Database 12c: Basic SQL

Unlock the full course today

Join today to access over 22,700 courses taught by industry experts or purchase this course individually.

Using SYSTIMESTAMP

Using SYSTIMESTAMP - Oracle Database Tutorial

From the course: Oracle Database 12c: Basic SQL

Start my 1-month free trial

Using SYSTIMESTAMP

- [Instructor] In addition to Oracle's sysdate function, which allows us to retrieve the current date and time, as we saw in our previous video, Oracle also provides a systimestamp function, which allows us to view the current timestamp in the database. Systimestamp provides much higher granularity or precision when compared to just sysdate. Let's see it in action. We'll type select systimestamp from dual. Running this query will show us the current timestamp of the Oracle database. Running this query again will provide us with an updated value. Note the high level of precision or granularity, of the exact timestamp provided by this function. Let's compare it to sysdate. So I'll type comma to char sysdate comma quote and the formatting string, DD, MM and a four digit year format, followed by the time format. Running a query will show us a comparison between the value generated by systimestamp and the value generated by sysdate. Again, note the increased precision and granularity of…

Contents