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.

Returns

This function returns a value of type FLOAT.

Examples

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