SQRT
Description
Returns the square root of a numeric expression sent as a parameter (SQRT in Transact-SQL).
Sample Source Pattern
Syntax
SQRT( expression )Arguments
expression: Numeric expression, must be positive, otherwise, the database engine will throw an error.
Return Type
Float
Examples
SELECT SQRT(256)SQRT(256)|
---------+
16.0|Last updated
Was this helpful?