Transform the value measured in radians into its corresponding degree measurement.
| SELECT DEGREES(1.5); |
The DEGREES() function converts a value from radians to degrees.
Note: Also refer to the RADIANS() and PI() functions.
| DEGREES(number) |
|
Parameter |
Description |
|
number |
Mandatory: A numerical value is necessary. |
| Works in: | From MySQL 4.0 |
Convert the radian value into degrees:
| SELECT DEGREES(PI()*2); |