Converts radians to degrees.
Syntax¶ Arguments¶real_expr
An expression representing the number of radians.
This returns a value of type REAL/FLOAT (double-precision floating point).
Examples¶Show the number of degrees for 1/3 of a radian, 1 radian, and 3 radians:
SELECT DEGREES(PI()/3), DEGREES(PI()), DEGREES(3 * PI()), DEGREES(1); +-----------------+---------------+-------------------+--------------+ | DEGREES(PI()/3) | DEGREES(PI()) | DEGREES(3 * PI()) | DEGREES(1) | |-----------------+---------------+-------------------+--------------| | 60 | 180 | 540 | 57.295779513 | +-----------------+---------------+-------------------+--------------+Copy
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4