Categories: Math
DEGREES
Converts radians to degrees.
Syntax
DEGREES(numeric_expression NUMERIC) → FLOAT
- numeric_expression: The number of radians. This must be an DOUBLE, INTEGER, or FLOAT.
Examples
DEGREES exampleSELECT DEGREES(PI())
-- 180.0
SELECT DEGREES(0)
-- 0.0
SELECT DEGREES(1)
-- 57.29577951308232
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.