bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL Server RADIANS() Function

Concept visual

SQL Server RADIANS() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Convert a degree value into radians:

SELECT RADIANS(180);

Definition and Usage

The RADIANS() function converts a degree value into radians.

Syntax

Radians(

number )

Parameter Values

Parameter

Description number

Required. A number in degrees

Technical Details

Works in:

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

More Examples

Example

Convert a degree value into radians:

SELECT RADIANS(-45);

Previous

❮ SQL Server Functions

Next

Previous

SQL Server POWER() Function

Next

SQL Server RAND() Function