SQL Server/T-SQL/Math Functions/SQRT

Материал из SQL эксперт
Перейти к: навигация, поиск

SQRT: Returns the square root of the given positive number

   <source lang="sql">

2> -- SQRT: Returns the square root of the given positive number. 3> 4> SELECT SQRT(25) 5> GO


                      5

(1 rows affected)


      </source>