カテゴリ:

数値関数 (三角関数)

SINH

引数の双曲正弦を計算します。

構文

SINH( <input_expr> )
Copy

引数

input_expr

The value or expression to operate on. The data type must be FLOAT or DECFLOAT.

Returns

If the input expression is of type DECFLOAT, the returned type is DECFLOAT. Otherwise, the returned type is FLOAT.

SELECT SINH(1.5);

-------------+
  SINH(1.5)  |
-------------+
 2.129279455 |
-------------+
Copy