degrees({n})

Returns the degrees value of {n} radians. {n} can be any real number in the range of -1e308 <= {n} <= 1e308. If null is passed as an argument, radians() returns null.

degrees({n}) takes the following syntax.

1SELECT DEGREES(N) as ALIAS
2FROM DATASET;

Example 

This example returns the degrees of 1.57079 radians.

1SELECT DEGREES(1.57079) as degreesValue
2FROM "Opportunity"
3LIMIT 1;
degreesValue
90