sqrt
Returns the square root of its argument.
Example
Find the square root of the values in the PROD_COST column.
sqrt(Sales.Products.PROD_COST)
Syntax
sqrt(double expr x)
- x : expression evaluating to
double
Returns
double
Notes
Function sqrt
returns the square root of whatever x evaluates to. Argument x must evaluate to a positive double
.