SINH Function

Returns the hyperbolic sine.

Category: Trigonometric
Returned data type: DOUBLE

Syntax

SINH(expression)

Arguments

expression

specifies any valid SQL expression that evaluates to a numeric value.

Data type DOUBLE
See <sql-expression>
FedSQL Expressions

Details

The SINH function returns the hyperbolic sine of the argument, which is given by the following equation.

Example

The following statements illustrate the SINH function:
Statements
Results
select sinh(0);
0
select sinh(1);
1.175201
select sinh(-1.0);
-1.1752
Last updated: February 23, 2017