In Oracle, the POWER function raises a value to the specified power. MySQL also provides the POWER function, so no conversion is required.
Oracle:
-- Raise 2 to 3 power SELECT POWER(2, 3) FROM dual; # 8
MySQL:
-- Raise 2 to 3 power SELECT POWER(2, 3); # 8
For more information, see Oracle to MySQL Migration.