cos
function
Applies to: Databricks SQL
Databricks Runtime
Returns the cosine of expr
.
cos(expr)
expr
: An expression that evaluates to a numeric expressing the angle in radians.
A DOUBLE.
> SELECT cos(0);
1.0
> SELECT cos(pi());
-1.0