Wednesday, March 2, 2016

Power Function In Oracle

Hi friends today we will discuss about power function in oracle:
The syntax:
select   power(number,number) from dual;

example:

 select power(3,2) from dual;

o/p:
9

Thank u

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.