DEGREES: converts a float value, which represents an angle in radians, into the value of this angle in degrees : DEGREES « Math Functions « SQL Server / T-SQL






DEGREES: converts a float value, which represents an angle in radians, into the value of this angle in degrees


1> -- DEGREES: converts a float value, which represents an angle in radians, into the value of this angle in degrees.
2>
3> SELECT DEGREES(PI()/4)
4> GO

------------------------
                      45

(1 rows affected)
1>
           
       








Related examples in the same category

1.DEGREES(ACOS(0.5))