SINH
Syntax
SINH(num)
Overview
SINH
is the hyperbolic sine of num
.
Parameter
Arguments
Description
num
It can take a numeric data type or a data type that can be converted to numeric as an argument.
The return type is the same as the numeric data type given as an argument.
Example
SELECT SINH(0);
sinh
------
0
Last updated