Monday, October 24, 2016

Equivalent of LENGTH of Oracle in SQL Server

Hi All...

The equivalent of LENGTH of Oracle in SQL Server is :



Oracle
SQL Server
Select LENGTH('aweaw') from dual;
Select LEN('aweaw') 

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.