This article is written about how to use the Oracle/PLSQL SINH characteristic with syntax and examples.
Description
The Oracle/PLSQL SINH feature returns the hyperbolic sine of n.
Syntax
The syntax for the SINH characteristic in Oracle/PLSQL is:
SINH( n )
Parameters or Arguments
n A numeric fee used to calculate the hyperbolic sine.
Returns
The SINH function returns a numeric value.
Applies To
The SINH characteristic can be used in the following versions of Oracle/PLSQL:
Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
Example
Let’s look at some Oracle SINH function examples and discover how to use the SINH feature in Oracle/PLSQL.
For example:
SINH(3)
Result: 10.0178749274099
SINH(5.2)
Result: 90.6333626553652
SINH(-5.2)
Result: -90.6333626553652
Leave a Review