Answers for "how to get the previous year in oracle"

SQL
1

oracle previous year

SELECT extract(YEAR FROM sysdate) - 1 AS PREVIOUS_YEAR FROM DUAL;
Posted by: Guest on July-03-2021

Code answers related to "how to get the previous year in oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language