SQRT
Returns the square root of a non-negative numeric expression.
Syntax
SQRT(<val>);
Parameter | Description |
---|---|
<val> | Valid values include column names, functions that return a column with numeric values, and constant numeric values. Returns NULL if a negative value is given. |
Example
SELECT
SQRT(64);
Returns: 8