Converts degrees to radians.
90
degrees converted to radians gives us half of
PI
:
1.5707963267948966
.
180
degrees converted to radians gives us
PI
:
3.141592653589793
.
SELECT
    RADIANS(90),
    RADIANS(180)
by Valeri Tandilashvili
4 years ago
MySQL
Mathematical functions
Full MySQL Course for Beginners
1
Pro tip: use ```triple backticks around text``` to write in code fences