SQL Server/T-SQL Tutorial/Math Functions/PI — различия между версиями

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

Текущая версия на 13:24, 26 мая 2010

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

   <source lang="sql">

4> SELECT PI() 5> GO


     3.1415926535897931

(1 rows affected)</source>