SINH function

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

Read syntax diagramSkip visual syntax diagram
SINH Function

|--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; 

Copyright© 2021 HCL Technologies Limited