Hi all,
Here is the function to add number of days to a date.
Here is the function to add number of days to a date.
Oracle
|
SQL Server
|
Select sysdate+20 from dual
|
Select dateadd(day,20,getdate())
|