Last updated 3 months ago
SQL Server
Azure Synapse Analytics
Returns the constant value of PI ().
PI( )
This method does not receive any parameters.
Float.
CREATE PROCEDURE CIRCUMFERENCE @radius float AS SELECT 2 * PI() * @radius; GO: EXEC CIRCUMFERENCE @radius = 2;
CIRCUMFERENCE @radius = 2 | --------------------------+ 12.5663706143592|
No issues were found.
No related EWIs.