Mega Code Archive

 
Categories / MSSQL / Math Functions
 

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>