RADIANS Function - SQL
Overview
The RADIANS function in SQL converts an angle from degrees to radians. It is useful for trigonometric calculations that require angles in radians.
Example:
SELECT
RADIANS(180)
Syntax:
SELECT
RADIANS(angle_in_degrees)
angle_in_degrees
is the angle in degrees that you want to convert to radians.