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.
Syntax
pow(expr1, expr2)
Arguments
expr1
: An expression that evaluates to a numeric.expr2
: An expression that evaluates to a numeric.
Returns
A DOUBLE.
Examples
> SELECT pow(2, 3);
8.0