SINH
Calculates the hyperbolic sine of a specified value, which is defined as ((e^x - e^{-x}) / 2) where (x) is the given number.
See also:
[SELECT
]
Syntax
SELECT SINH(value) FROM <multipartIdentifier>;
Arguments
value
A numeric expression for which the hyperbolic sine is to be calculated.
Return Value(s)
Returns the hyperbolic sine of the specified value.
Examples
Calculate the hyperbolic sine of 1
SELECT SINH(1) AS hyperbolic_sine_value;
This query returns approximately 1.1752
, as the hyperbolic sine of 1 is about 1.1752.
Calculate the hyperbolic sine of 0
SELECT SINH(0) AS hyperbolic_sine_value;
This query calculates the hyperbolic sine of 0, resulting in 0
, since the hyperbolic sine of 0 is exactly 0.