Skip to content

SINH

Returns the hyperbolic sine of the argument.

Syntax

sql
SINH(expr)

Argument

expr: A real number or an argument of another data type that can be implicitly converted to a numeric data type.

Return Value

The value of data type DECIMAL.

Example

sql
SELECT sinh(0), sinh('1'), sinh(-1), sinh(3.14);
+-----------+-----------+-----------+------------+
|  SINH(0)  | SINH('1') |  SINH(-1) | SINH(3.14) |
|-----------+-----------+-----------+------------|
|         0 |    ~1.175 |   ~-1.175 |     ~11.53 |
+-----------+-----------+-----------+------------+