Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
SQRT
On this page
The SQRT() function returns the square root of a given number, accurate to within the representation of doubles.
Syntax
SQRT ( number )
Arguments
-
expression: any valid numeric expression.
Return Type
Float or double.NULL.
Examples
SELECT SQRT(-2);
+----------+
| SQRT(-2) |
+----------+
| NULL |
+----------+SELECT SQRT(2);
+--------------------+
| SQRT(2) |
+--------------------+
| 1.4142135623730951 |
+--------------------+SELECT SQRT(4);
+---------+
| SQRT(4) |
+---------+
| 2 |
+---------+Last modified: