SINH function

The SINH function returns the hyperbolic sine of the argument, where the argument is an angle expressed in radians.

SINH Function

1  SINH ( radian_expr )
The following example returns the hyperbolic sine of the values in the degrees column of the anglestbl table. The expression passed to the SINH function converts the degrees to radians.
SELECT SINH(degrees*180/3.1416) FROM anglestbl;