- Categories:
Numeric functions (Trigonometric)
COSH¶
Computes the hyperbolic cosine of its argument.
Syntax¶
COSH( <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¶
SELECT COSH(1.5);
+-------------+
| COSH(1.5) |
|-------------|
| 2.352409615 |
+-------------+