SQRT
SQRT(n)

Returns the square root of n, which must be a positive number.

Examples

SQL> SELECT SQRT(100), 10*10, SQRT(81), 9*9 FROM dual;

 SQRT(100)      10*10   SQRT(81)        9*9
---------- ---------- ---------- ----------
        10        100          9         81

Get Oracle SQL: the Essential Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.