version 11
DEGREES (arithmetic_expression)
Description
The DEGREES function returns the number of degrees of the arithmetic_expression. The arithmetic_expression represents the angle expressed in radians.
Example
This example will create a table and insert values based on the numbers of degrees of the value Pi:
CREATE TABLE Degrees_table (PI_value float); INSERT INTO Degrees_table VALUES (DEGREES(PI())); SELECT * FROM Degrees_tableSee Also