Monday, October 24, 2016

Equivalent of Dual in Oracle in SQL Server

Hi all here is the conversion for Dual:

 there is no concept called dual in SQL Server..

OracleSQL Server
select 2*3 from dualselect 2*3

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.