SQL Server DEGREES() Function

Example

Convert a radian value into degrees:

SELECT DEGREES(1.5);
Try it Yourself »

Definition and Usage

The DEGREES() function converts a value in radians to degrees.

Note: See also the RADIANS() and PI() functions.

Syntax

DEGREES(number)

Parameter Values

Parameter Description
number Required. A numeric value

Technical Details

Works in: SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse

More Examples

Example

Convert a radian value into degrees:

SELECT DEGREES(PI()*2);
Try it Yourself »

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.