SQLite sinh() Function

The SQLite sinh() function returns the hyperbolic sine of the specified number.

Syntax

Here is the syntax of the SQLite sinh() function:

sinh(number)

Parameters

number

Required. A number used to compute the hyperbolic sine.

Return value

The SQLite sinh() function returns the hyperbolic sine of the specified number.

If the parameter number is NULL, the sinh() function will return NULL.

Examples

This example shows the basic usage of the SQLite exp() function:

SELECT
    sinh(-1000),
    sinh(-2.5),
    sinh(-0.2),
    sinh(0),
    sinh(0.2),
    sinh(2.5),
    sinh(1000);
sinh(-1000) = -Inf
 sinh(-2.5) = -6.05020448103979
 sinh(-0.2) = -0.201336002541094
    sinh(0) = 0.0
  sinh(0.2) = 0.201336002541094
  sinh(2.5) = 6.05020448103979
 sinh(1000) = Inf