Useful tips to find the Sysdate Commands from Oracle Database by issuing SQL Queries
Posted by Mir Sayeed Hassan on 29th January 2023
Useful tips to find the Sysdate Commands from Oracle Database by issuing SQL Queries Find the First Day of the Month SQL> SELECT TRUNC (SYSDATE, ‘MONTH’) FROM DUAL; TRUNC(SYS ——— 01-JAN-23 Find the Last Day of the Month SQL> SELECT TRUNC (LAST_DAY (SYSDATE)) FROM DUAL; TRUNC(LAS ——— 31-JAN-23 Find… Read more..
Posted in DBA Administration | Comments Off on Useful tips to find the Sysdate Commands from Oracle Database by issuing SQL Queries