Tuesday, October 25, 2016

Adding days in SQL Server

Hi all,

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())

No comments:

Read data from csv in R Programming

Read a data set from csv file.. x <- read.csv(file.choose(),header=TRUE) here x is the R data set vaiable.