Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Raises expr1
to the power of expr2
. This function is a synonym for power
function.
pow(expr1, expr2)
expr1
: An expression that evaluates to a numeric.expr2
: An expression that evaluates to a numeric.
A DOUBLE.
> SELECT pow(2, 3);
8