What is this Site!!

All about Real time requirements in Orale Stay Tune!!
Showing posts with label Practice OTHER FUNCTIONS. Show all posts
Showing posts with label Practice OTHER FUNCTIONS. Show all posts

Tuesday, January 22, 2008

Practice OTHER FUNCTIONS



>>>Previous>>>



OTHER FUNCTIONS:


Note: Arguments to the below given functions are in terms of radians

COS(x): It returns the Cosine of x.

SQL> SELECT COS(0) FROM DUAL;
COS(0)
----------
1

COSH(x) : It returns hyperbolic cosine of x.

SQL> SELECT COSH(0) FROM DUAL;

COSH(0)
----------
1


SIN(x) : It returns sine of x.

SQL> SELECT SIN(0) FROM DUAL;

SIN(0)
----------
0


SINH(x): It returns hyperbolic sine of x.

SQL> SELECT SINH(0) FROM DUAL;

SINH(0)
----------
0

TAN(x): It returns tangent of x.

SQL> SELECT TAN(0) FROM DUAL;

TAN(0)
----------
0

TANH(x): It returns hyperbolic tangent of x.
SQL> SELECT TANH(0) FROM DUAL;

TANH(0)
----------
0



>>>Next>>>