Categories:Numeric functions (Trigonometric) SINH¶ Computes the hyperbolic sine of its argument. Syntax¶ Copy codeSINH( <input_expr> ) Arguments¶ input_exprThe value or expression to operate on. The data type must be FLOAT. Returns¶ This function returns a value of type FLOAT. Examples¶ Copy codeSELECT SINH(1.5); +-------------+ | SINH(1.5) | |-------------| | 2.129279455 | +-------------+