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)
Last updated
Was this helpful?