SINH function
SINH
returns the hyperbolic sine of a value. It takes arguments in radians where,
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>