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. Syntax
select pow(m,n); Parameter:
m: It is base value in the calculation n: It is exponent value in the calculation Returns
This function returns m raised to the nth power. Example 1Select pow(2,5); Output:
Example 2Select pow(0.23,2); Output:
Next TopicMySQL Math
|