acosh
function
Applies to: Databricks SQL
Databricks Runtime
Returns the inverse hyperbolic cosine of expr
.
acosh(expr)
expr
: A numeric expression.
A DOUBLE.
If the argument is out of bounds, NaN
is returned.
> SELECT acosh(1);
0.0
> SELECT acosh(0);
NaN