Numeric Math Functions Oracle PLSQL

SQL> --SQRT(x): Returns the square root of x.
SQL>
SQL> select SQRT(25) from dual;
  SQRT(25)
----------
         5
SQL>