Skip to content

SYSTIMESTAMP

SYSTIMESTAMP() RETURN TIMESTAMP WITH TIME ZONE;

Section titled “SYSTIMESTAMP() RETURN TIMESTAMP WITH TIME ZONE;”
SELECT SYSTIMESTAMP FROM DUAL;
SYSTIMESTAMP
----------------------------------------------
27-JUL-20 14.53.49.567439000 -07:00

The SYSTIMESTAMP function in Oracle returns the current date and time of the system including fractional seconds and time zone. In the provided example, the function SYSTIMESTAMP is used to retrieve the current system timestamp from a dummy table DUAL.