Function sqrt() calculates the square root of a number, both the argument and the return are non-negative.
sqrt()
Arguments:
Returns:
Example: Calculate the square root of each row of an alias
UQLuncollect [1,4,9] as a return sqrt(a)
uncollect [1,4,9] as a return sqrt(a)
Result1 2 3
1 2 3