TANH

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 TANH(0);
 tanh 
------
    0

Last updated