SQRT(x): Returns the square root of x : SQRT « Numeric Math Functions « Oracle PL / SQL






SQRT(x): Returns the square root of x

 

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

  SQRT(25)
----------
         5

SQL>
           
         
  








Related examples in the same category

1.SQRT() extracts the square root from the input argument.
2.Get the square root
3.SQRT(5)
4.round(sqrt(sal),2)