SQL Server/T-SQL/Math Functions/PI

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

PI: Returns the value of the mathematical constant PI to 16 decimal places

   <source lang="sql">

2> -- PI: Returns the value of the mathematical constant PI to 16 decimal places 3> 4> SELECT PI() 5> GO


     3.1415926535897931

(1 rows affected)

      </source>