Hi All,
We have a requirement to display previous year, current year and next year values as an LOV in ADF page.
This is the query which fetches previous year, current year and next year. But the output of this query will display values in 3 columns:
select (Extract(year from sysdate)-1), Extract(year from sysdate), (Extract(year from sysdate)+1) from dual;
Output:
2012 2013 2014
But I want to display them in single column with 3 rows like:
2012
2013
2014
Please share your ideas.