SQLite asinh() Function

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

Syntax

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

asinh(number)

Parameters

number

Required. A number used to compute the inverse hyperbolic sine.

Return value

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

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

Examples

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

SELECT
    asinh(-2000),
    asinh(-2),
    asinh(-1),
    asinh(0),
    asinh(1),
    asinh(2),
    asinh(2000);
asinh(-2000) = -8.29404970260202
   asinh(-2) = -1.44363547517881
   asinh(-1) = -0.881373587019543
    asinh(0) = 0.0
    asinh(1) = 0.881373587019543
    asinh(2) = 1.44363547517881
 asinh(2000) = 8.29404970260202