top of page
CerebroSQL

PI

База данных: MySQL

68747470733a2f2f7374796c65732e7265646469746d656469612e636f6d2f74355f32716d366b2f7374796c65

Syntax:
PI()

Returns the value of ? (pi). The default number of decimal places
displayed is seven, but MySQL uses the full double-precision value
internally.

Example

mysql> SELECT PI();
-> 3.141593
mysql> SELECT PI()+0.000000000000000000;
-> 3.141592653589793116

bottom of page