The SYSDATE() function is used in Oracle to find the current date and time of operating system on which the database is running.
SELECT TO_CHAR (SYSDATE, ‘MM-DD-YYYY HH24:MI:SS’) “Current_Date” FROM DUAL;
Technical Interview Questions
The SYSDATE() function is used in Oracle to find the current date and time of operating system on which the database is running.
SELECT TO_CHAR (SYSDATE, ‘MM-DD-YYYY HH24:MI:SS’) “Current_Date” FROM DUAL;