DEGREES function is used to get angle in degrees of the specified number expression. It returns same type of numeric expression.
Syntax of DEGREES Function :
DEGREES ( numeric_expression )
numeric_expression is a numeric or approximate numeric data type.
Return type of DEGREES is based on expression you specify in function.
Examples of DEGREES Function :
Example 1 : Use of DEGREES function in select clause
SELECT DEGREES(5)
Output
286
Above example returns angle in degree for specified angle in radians value 5.