Skip to content

RADIANS

  • x: This parameter represents the number which is to be converted into radians. The input value should be a numeric floating point.
SELECT RADIANS(60) as Result;
| Result |
|--------------|
| 1.0471975512 |

In this example, the RADIANS function in MySQL is used to convert an angle specified in degrees to radians. Specifically, the angle of 60 degrees is converted to its radian equivalent- approximately 1.0471975512.