asin
function
Applies to: Databricks SQL
Databricks Runtime
Returns the inverse sine (arcsine) of expr
.
asin(expr)
expr
: An expression that evaluates to a numeric.
A DOUBLE.
If the argument is out of bound, NaN
.
> SELECT asin(0);
0.0
> SELECT asin(2);
NaN