SQL Server/T-SQL Tutorial/Math Functions/SQUARE
Версия от 13:46, 26 мая 2010; (обсуждение)
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)