SYSTIMESTAMP

Syntax

SYSTIMESTAMP()
RETURNS timestamptz;

Overview

The systimestamp function returns the timestamp of the current statement based on the server's time zone.

Internally, it calls GetCurrentTimestamp() to get the timestamp value based on the server's timezone.

Example

SELECT oracle.SYSTIMESTAMP();

         systimestamp          
-------------------------------
 2025-03-06 23:41:29.160617+09
(1 row)

Last updated