Kategorien:

Numerische Funktionen (Trigonometrisch)

SINH

Berechnet den hyperbolischen Sinus des Arguments.

Syntax

SINH( <input_expr> )
Copy

Argumente

input_expr

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

Rückgabewerte

This function returns a value of type FLOAT.

Beispiele

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