Collections:
RADIANS() - Degrees to Radians
How to convert a given angle in degrees to radians using the RADIANS() function?
✍: FYIcenter.com
RADIANS(X) is a MySQL built-in function that
converts a given angle in degrees to radians.
For example:
SELECT RADIANS(0), RADIANS(90), RADIANS(180); -- +------------+--------------------+-------------------+ -- | RADIANS(0) | RADIANS(90) | RADIANS(180) | -- +------------+--------------------+-------------------+ -- | 0 | 1.5707963267948966 | 3.141592653589793 | -- +------------+--------------------+-------------------+
Reference information of the RADIANS() function:
RADIANS(X): rad Returns the argument X, converted from degrees to radians. Arguments, return value and availability: X: Required. The input angle in degrees. rad: Return value. The input angle in radians. Available since MySQL 4.0.
Related MySQL functions:
⇒ RAND() - Random Value Generator
2023-11-15, 1161🔥, 0💬
Popular Posts:
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
Where to find answers to frequently asked questions on Managing Security, Login and User in SQL Serv...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...