COSH
Syntax
COSH(num)
Overview
COSH
is the hyperbolic cosine of n.
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 COSH(0);
cosh
------
1
Last updated