Categories:

Numeric functions (Trigonometric)

SINH

Computes the hyperbolic sine of its argument.

Syntax

SINH( <input_expr> )
Copy

Arguments

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.

Examples

SELECT SINH(1.5);

-------------+
  SINH(1.5)  |
-------------+
 2.129279455 |
-------------+
Copy
Language: English