Oracle Number Function - Oracle/PLSQL SINH Function






This Oracle tutorial explains how to use the Oracle/PLSQL SINH function.

SINH returns the hyperbolic sine of a value. It takes arguments in radians where,

Syntax

The syntax for the Oracle/PLSQL SINH function is:

SINH( n )

n is a number.

Example

radians = (angle * 2 * 3.1416 / 360)

Using the SINH function to find the hyperbolic sine of 30 degrees:


SQL> SELECT SINH(30*2*3.1416/360) FROM dual;

SINH(30*2*3.1416/360)
---------------------
            .54785487

SQL>