Skip to content

POW

  • x: The base number that will be raised to the power of Y. This can be any numeric constant, variable, or expression.
  • y: The exponent to which the base number X is raised. This can also be any numeric constant, variable, or expression.
SELECT POW(5, 3);
125

The available function POW(base, exponent) returns the value of the base argument raised to the power of the exponent argument. In this case, it’s calculating 5 to the power of 3, which equals 125.