Categories:

Numeric functions (Trigonometric)

ASINH

Computes the inverse (arc) hyperbolic sine of its argument.

Syntax

ASINH( <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 ASINH(2.129279455);
Copy
+--------------------+
| ASINH(2.129279455) |
|--------------------|
|                1.5 |
+--------------------+