VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / Mathematical Functions / RADIANS
In This Topic
RADIANS
In This Topic
Given an input value in degrees the function converts it to radians.


Example

SELECT RADIANS(180);

RETURNS: 3.1415926535897931


SELECT DEGREES(3.1415926535897931);

RETURNS:  180


See Also