Answers for "how to get the first day of the month in oracle"

SQL
2

oracle sql first day of month

-- First day of month
SELECT TRUNC(sysdate, 'MONTH') from dual;
Posted by: Guest on January-18-2021
1

oracle sql first day of year

-- Oracle: First day of year
SELECT TRUNC(sysdate, 'YEAR') FROM DUAL;
Posted by: Guest on January-18-2021

Code answers related to "how to get the first day of the month in oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language