Answers for "oracle first day in month"

SQL
4

oracle first day of last year

-- Oracle: First day of previous year
SELECT trunc(add_months(sysdate, -12), 'YEAR') FROM DUAL;
Posted by: Guest on July-03-2021
2

oracle sql first day of month

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

Code answers related to "SQL"

Browse Popular Code Answers by Language