SQL Server/T-SQL Tutorial/Math Functions/SQUARE

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

select SQUARE(5.2786)

4> select SQUARE(5.2786)
5> GO
------------------------
      27.863617959999999
(1 rows affected)
1>


SQUARE Returns the square of the given number

.
4> SELECT SQUARE(20)
5> GO
------------------------
                     400
(1 rows affected)