Built-in Functions → sqrt

sqrt() is a scalar arithmetic function that returns the square root of its argument, in which the argument must evaluate to a positive double.

Signature

sqrt(double exp)
  • double exp : expression evaluating to double

Returns

double

Example

Find the square root of the values in the PROD_COST column.

sqrt(Sales.Products.PROD_COST)