C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL POWER() FunctionThe power() is a Math function of MySQL. This function is used to get the power of the given values. Syntaxselect power(m,n); Parameter:m: It is base value in the calculation n: It is exponent value in the calculation ReturnsThis function returns m raised to the nth power. Example 1Select power(-25,5); Output: Example 2Select power(5.36,2); Output:
Next TopicMySQL Math
|