SQL Server/T-SQL/Math Functions/SQUARE

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

SQUARE: Returns the square of the given number

   <source lang="sql">

2> -- SQUARE: Returns the square of the given number. 3> 4> SELECT SQUARE(20) 5> GO


                    400

(1 rows affected)

      </source>