Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
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: