SQRT() extracts the square root from the input argument. : SQRT « Numeric Math Functions « Oracle PL / SQL






SQRT() extracts the square root from the input argument.

  
SQL>
Syntax: SQRT(<numeric expression>)
SQL>
SQL>
SQL> SELECT
  2     SQRT(100) root from dual;

      ROOT
----------
        10

   
  








Related examples in the same category

1.Get the square root
2.SQRT(x): Returns the square root of x
3.SQRT(5)
4.round(sqrt(sal),2)