- カテゴリ:
数値関数 (三角関数)
SINH¶
引数の双曲正弦を計算します。
構文¶
SINH( <input_expr> )
引数¶
input_exprThe 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 | -------------+