Microsoft
Software
Hardware
Network
Question : PL/SQL - how to dynamically retrieve next 5 years from sysdate
Does anyone know to code the PL/SQL required to dynamically retrieve the next 5 years from the current sysdate? So no matter what year it is, the query will always produce the next 5 years from that date.
Thanks.
Answer : PL/SQL - how to dynamically retrieve next 5 years from sysdate
try this. It works for me.
select to_char(add_months(sysdate
,(level-1)
*12), 'YYYY')
from dual
connect by level <= 5
Random Solutions
Exporting from SQL Server 2005 Table to Flat file with UTF-8 Problem.
Show All Records In Query if Nothing Selected in Listbox
Exchange Server mail delay.
Erratic Cursor behavior on Word 2007
Communication between 2 remote Servers
SQL2005 View being forced to Encrypted
Wireless Projector Adapter
Excel addins
OWA failing externally
How can I determine from an Office 2010 Volume License key (or product activation key) exactly which version of Office 2010 to download & install from MSDN (msdn.microsoft.com)?