Course
Simulator
More
Premium
Log in
MySQL Function Reference
Functions
POW
POW
Returns a number to the specified power
MySQL 8.1
POW
(
num
,
power
)
num
The number that is raised to a power
power
Degree of
Examples
MySQL 8.1
SELECT
POW
(
2
,
2
)
;