pi()

Returns the value of constant π, where π=3.14159.

PI() takes the following syntax.

1SELECT PI() as ALIAS
2FROM DATASET;

Example 

1SELECT PI() as piValue
2FROM "Opportunity"
3LIMIT 1;
piValue
3.14159