1> -- Once an angle has been calculated in radians, the DEGREES function can be used to convert that to an angle in degrees. For example, the following returns the angle in degrees
that has a cosine value of 0.5.
2>
3> SELECT DEGREES(ACOS(0.5))
4> GO