SQL Server/T-SQL/Math Functions/SQRT
SQRT: Returns the square root of the given positive number
2> -- SQRT: Returns the square root of the given positive number.
3>
4> SELECT SQRT(25)
5> GO
------------------------
5
(1 rows affected)