SQL Server SINH Function
Updated 2023-10-13 14:51:47.893000
Description
Use the scalar function SINH to calculate the hyperbolic sine of a number.
Syntax
SELECT [westclintech].[wct].[SINH] (
<@Number, float,>)
Arguments
@Number
is any real number. @Number is an expression of type float or of a type that can be implicitly converted to float.
Return Type
float
Remarks
SINH = (EXP(@Number) - EXP(-@Number)) / 2.
Examples
SELECT wct.SINH(PI());
Here is the result set.
| column 1 |
|---|
| 11.5487393572577 |