Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Numerical Math Functions
 

SQRT(x) gets the square root of x

The following example displays the square root of 25 and 5, respectively: SQL> SQL> SELECT SQRT(25), SQRT(5) FROM dual;   SQRT(25)    SQRT(5) ---------- ----------          5 2.23606798 SQL>