MySQL Tutorial/Math Numeric Functions/PI — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 09:49, 26 мая 2010
PI() returns the value of |D (pi).
The default number of decimal places displayed is seven, but MySQL uses the full double-precision value internally.
mysql>
mysql> SELECT PI();
+----------+
| PI() |
+----------+
| 3.141593 |
+----------+
1 row in set (0.00 sec)
mysql> SELECT PI()+0.000000000000000000;
+---------------------------+
| PI()+0.000000000000000000 |
+---------------------------+
| 3.141592653589793100 |
+---------------------------+
1 row in set (0.00 sec)
mysql>