SQL Server 函数

SQL Server (Transact-SQL) PI() 函数返回 𝜋 的值。 (pi)。

语法

PI()

参数

无需参数。

返回值

返回𝜋的值。

示例1:

下面的示例展示了PI()函数的用法.

SELECT PI();
Result: 3.141592653589793

示例 2:

考虑一个名为 Sample 的数据库表,其中包含以下记录:

DataRadius
Data 11
Data 22
Data 33
Data 44
Data 55

下面给出的语句可用于计算圆的面积,其中半径由 Radius 列的值指定。

SELECT *, (PI() * Radius * Radius) AS Area FROM Sample;

这将产生如下所示的结果:

DataRadiusArea
Data 113.141592653589793
Data 2212.566370614359172
Data 3328.274333882308138
Data 4450.26548245743669
Data 5578.53981633974483