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

Материал из SQL эксперт
Версия от 13:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

select SQUARE(5.2786)

   <source lang="sql">

4> select SQUARE(5.2786) 5> GO


     27.863617959999999

(1 rows affected) 1></source>


SQUARE Returns the square of the given number

   <source lang="sql">

. 4> SELECT SQUARE(20) 5> GO


                    400

(1 rows affected)</source>