SINH is one of the vital Numeric/Math functions of Oracle. It is used to get the hyperbolic sine of a number. The SINH function is supported in the various versions of the Oracle/PLSQL, including, Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i and Oracle 8i.
Syntax:
SINH ( number )
Parameters:
number: It is used to specify the number to get the hyperbolic sine value of.
Example 1:
SINH (1) |
Output:
1.1752011936438
Explanation:
The hyperbolic sine value of 1 is 1.1752011936438, and so is the result.
Example 1:
SINH (-1) |
Output:
-1.1752011936438
Explanation:
The hyperbolic sine value of -1 is -1.1752011936438, and so is the result.
Example 2:
SINH (0) |
Output:
0
Explanation:
The hyperbolic sine value of 0 is 0, and so is the result.