RADIANS(X)
Returns the argument X
, converted from degrees to radians. Note that π radians equals 180 degrees.
This is the converse of the DEGREES() function.
SELECT RADIANS(45); +-------------------+ | RADIANS(45) | +-------------------+ | 0.785398163397448 | +-------------------+ SELECT RADIANS(90); +-----------------+ | RADIANS(90) | +-----------------+ | 1.5707963267949 | +-----------------+ SELECT RADIANS(PI()); +--------------------+ | RADIANS(PI()) | +--------------------+ | 0.0548311355616075 | +--------------------+ SELECT RADIANS(180); +------------------+ | RADIANS(180) | +------------------+ | 3.14159265358979 | +------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/radians/