C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL POW() FunctionThe pow() is a Math function of MySQL. This function is used to get the power of the given values. Syntaxselect pow(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 pow(2,5); Output: Example 2Select pow(0.23,2); Output:
Next TopicMySQL Math
|