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>