- 类别:
数值函数 (三角函数)
COSH¶
计算其实参的双曲余弦值。
语法¶
COSH( <input_expr> )
实参¶
input_exprThe value or expression to operate on. The data type must be FLOAT.
返回¶
This function returns a value of type FLOAT.
示例¶
SELECT COSH(1.5);
+-------------+
| COSH(1.5) |
|-------------|
| 2.352409615 |
+-------------+