- カテゴリ:
数値関数 (三角関数)
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 |
+-------------+