Is there a way in ORACLE that can display the Fiscal Year?
For example, I can write this query in SQL SERVER to pull the FYs but don't know how to write it in ORACLE.
SELECT
DATEPART(yyyy, DATEADD(mm, 3, DATE)) AS FY
FROM MYTABLE
Output:
FY
----
2009
2010
2011
What can I try to resolve this?