SYSDATE
SYSDATE is a SQL function that returns the current date and time set on the system. The function does not require any parameters.
SYSDATE()
Example
Output
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.