SYSDATE
SYSDATE()
Section titled “SYSDATE()”Example
Section titled “Example”SELECT SYSDATE FROM dual;Output
Section titled “Output”SYSDATE-------------------------27-JUL-21Explanation
Section titled “Explanation”The SYSDATE function is used in Oracle to get the current system date and time from the operating system on which the database resides. In the provided example, SELECT SYSDATE FROM dual;, SYSDATE returns the current date and time set on your database server. ‘dual’ is a special one-row, one-column table present by default in Oracle and other database installations.